0s autopkgtest: DBG: testbed init 0s autopkgtest [00:12:26]: starting date and time: 2025-02-20 00:12:26+0000 0s autopkgtest [00:12:26]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [00:12:26]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.5m_u5fw5/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sudo --apt-upgrade sbuild --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sudo/1.9.16p2-1ubuntu1 -- 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-sbuild-20250220-001226-juju-7f2275-prod-proposed-migration-environment-15-064970f3-10d8-46da-b712-949b4bf6f324 --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 105s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.dghVVw 105s autopkgtest: DBG: sending command to testbed: print-execute-command 105s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ckrahb00/runcmd 105s autopkgtest: DBG: sending command to testbed: capabilities 105s autopkgtest: DBG: got reply from testbed: ok revert-full-system isolation-machine revert suggested-normal-user=ubuntu reboot root-on-testbed 105s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'isolation-machine', 'revert', 'suggested-normal-user=ubuntu', 'reboot', 'root-on-testbed', 'has_internet'] 105s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dghVVw'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.dghVVw/wrapper.sh 105s autopkgtest: DBG: got reply from testbed: ok 105s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dghVVw/wrapper.sh'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [00:14:12]: testbed dpkg architecture: s390x 106s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [00:14:12]: testbed apt version: 2.9.30 106s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: testbed has eatmydata 106s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [00:14:12]: @@@@@@@@@@@@@@@@@@@@ test bed setup 106s 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 [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [00:14:12]: testbed release detected to be: None 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT source: Types: deb deb-src 107s URIs: http://ftpmaster.internal/ubuntu/ 107s Suites: plucky-proposed 107s Components: main restricted universe multiverse 107s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 107s Package: * 107s Pin: release plucky-proposed 107s Pin-Priority: 500 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [00:14:13]: updating testbed package index (apt update) 107s 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'] 108s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 108s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 108s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 108s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 108s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [81.0 kB] 108s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [739 kB] 108s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 108s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [16.3 kB] 108s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [106 kB] 108s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 108s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [665 kB] 108s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5472 B] 109s Fetched 1727 kB in 1s (1773 kB/s) 109s Reading package lists... 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 109s Package: * 109s Pin: release plucky-proposed 109s Pin-Priority: 100 109s 109s Package: src:sudo:any 109s Pin: release plucky-proposed 109s Pin-Priority: 995 109s 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:sudo:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s 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.dghVVw/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s 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'] 110s + lsb_release --codename --short 110s + RELEASE=plucky 110s + cat 110s + [ plucky != trusty ] 110s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 110s Reading package lists... 110s Building dependency tree... 110s Reading state information... 110s Calculating upgrade... 110s The following packages were automatically installed and are no longer required: 110s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 110s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 110s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 110s linux-tools-6.11.0-8-generic 110s Use 'sudo apt autoremove' to remove them. 110s The following packages will be upgraded: 110s apparmor iproute2 libapparmor1 libgpgme11t64 liblsof0 libp11-kit0 110s liburcu8t64 lsof lto-disabled-list python-apt-common python3-apt 110s sysvinit-utils 110s 12 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 110s Need to get 3078 kB of archives. 110s After this operation, 213 kB of additional disk space will be used. 110s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 111s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 111s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libapparmor1 s390x 4.1.0~beta5-0ubuntu2 [54.1 kB] 111s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 111s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python-apt-common all 2.9.9 [21.2 kB] 111s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3-apt s390x 2.9.9 [185 kB] 111s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x apparmor s390x 4.1.0~beta5-0ubuntu2 [758 kB] 111s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x liburcu8t64 s390x 0.15.1-1 [66.0 kB] 111s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 111s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 111s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 111s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x lto-disabled-list all 55 [12.3 kB] 111s Preconfiguring packages ... 111s Fetched 3078 kB in 1s (4456 kB/s) 111s (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.) 111s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 111s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 111s Setting up sysvinit-utils (3.14-1ubuntu1) ... 112s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 112s Preparing to unpack .../00-iproute2_6.13.0-1ubuntu1_s390x.deb ... 112s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 112s Preparing to unpack .../01-libapparmor1_4.1.0~beta5-0ubuntu2_s390x.deb ... 112s Unpacking libapparmor1:s390x (4.1.0~beta5-0ubuntu2) over (4.1.0~beta1-0ubuntu5) ... 112s Preparing to unpack .../02-libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 112s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 112s Preparing to unpack .../03-python-apt-common_2.9.9_all.deb ... 112s Unpacking python-apt-common (2.9.9) over (2.9.8) ... 112s Preparing to unpack .../04-python3-apt_2.9.9_s390x.deb ... 112s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 112s for fn in glob1(directory, "%s.*" % fname): 112s Unpacking python3-apt (2.9.9) over (2.9.8) ... 112s Preparing to unpack .../05-apparmor_4.1.0~beta5-0ubuntu2_s390x.deb ... 112s Unpacking apparmor (4.1.0~beta5-0ubuntu2) over (4.1.0~beta1-0ubuntu5) ... 113s dpkg: warning: unable to delete old directory '/lib/apparmor': Directory not empty 113s Preparing to unpack .../06-liburcu8t64_0.15.1-1_s390x.deb ... 113s Unpacking liburcu8t64:s390x (0.15.1-1) over (0.15.0-1) ... 113s Preparing to unpack .../07-lsof_4.99.4+dfsg-1_s390x.deb ... 113s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 113s Preparing to unpack .../08-liblsof0_4.99.4+dfsg-1_s390x.deb ... 113s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 113s Preparing to unpack .../09-libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 113s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 113s Preparing to unpack .../10-lto-disabled-list_55_all.deb ... 113s Unpacking lto-disabled-list (55) over (54) ... 113s Setting up liburcu8t64:s390x (0.15.1-1) ... 113s Setting up lto-disabled-list (55) ... 113s Setting up libapparmor1:s390x (4.1.0~beta5-0ubuntu2) ... 113s Setting up liblsof0 (4.99.4+dfsg-1) ... 113s Setting up iproute2 (6.13.0-1ubuntu1) ... 113s Setting up apparmor (4.1.0~beta5-0ubuntu2) ... 113s Installing new version of config file /etc/apparmor.d/abstractions/dconf ... 113s Installing new version of config file /etc/apparmor.d/abstractions/mesa ... 113s Installing new version of config file /etc/apparmor.d/abstractions/nameservice ... 113s Installing new version of config file /etc/apparmor.d/abstractions/php ... 113s Installing new version of config file /etc/apparmor.d/abstractions/python ... 113s Installing new version of config file /etc/apparmor.d/slirp4netns ... 113s Installing new version of config file /etc/apparmor.d/toybox ... 113s Installing new version of config file /etc/apparmor.d/transmission ... 113s Installing new version of config file /etc/apparmor.d/tunables/global ... 114s Reloading AppArmor profiles 115s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 115s Setting up lsof (4.99.4+dfsg-1) ... 115s Setting up python-apt-common (2.9.9) ... 115s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 115s Setting up python3-apt (2.9.9) ... 115s Processing triggers for systemd (257.2-3ubuntu1) ... 115s Processing triggers for man-db (2.13.0-1) ... 117s Processing triggers for libc-bin (2.40-4ubuntu1) ... 117s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 117s + /usr/lib/apt/apt-helper analyze-pattern ?true 117s + uname -r 117s + sed s/\./\\./g 117s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 117s + apt list ?obsolete 117s + tail -n+2 117s + cut -d/ -f1 117s + grep -v ^linux-.*6\.12\.0-15-generic.* 117s + true 117s + obsolete_pkgs= 117s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 117s Reading package lists... 117s Building dependency tree... 117s Reading state information... 117s The following packages will be REMOVED: 117s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 117s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 117s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 118s linux-tools-6.11.0-8-generic* 118s 0 upgraded, 0 newly installed, 9 to remove and 1 not upgraded. 118s After this operation, 167 MB disk space will be freed. 118s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81079 files and directories currently installed.) 118s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 118s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 118s Removing libpython3.12t64:s390x (3.12.9-1) ... 118s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 118s Removing libnsl2:s390x (1.3.0-3build3) ... 118s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 118s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 118s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 119s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 119s Processing triggers for libc-bin (2.40-4ubuntu1) ... 119s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55979 files and directories currently installed.) 119s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 119s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 120s + grep -q trusty /etc/lsb-release 120s + [ ! -d /usr/share/doc/unattended-upgrades ] 120s + [ ! -d /usr/share/doc/lxd ] 120s + [ ! -d /usr/share/doc/lxd-client ] 120s + [ ! -d /usr/share/doc/snapd ] 120s + type iptables 120s + cat 120s + chmod 755 /etc/rc.local 120s + . /etc/rc.local 120s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 120s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 120s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 120s + uname -m 120s + [ s390x = ppc64le ] 120s + [ -d /run/systemd/system ] 120s + systemd-detect-virt --quiet --vm 120s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 120s + cat 120s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 120s + echo COMPRESS=lz4 120s autopkgtest: DBG: testbed command exited with code 0 120s autopkgtest [00:14:26]: upgrading testbed (apt dist-upgrade and autopurge) 120s 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'] 120s Reading package lists... 120s Building dependency tree... 120s Reading state information... 120s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 120s Starting 2 pkgProblemResolver with broken count: 0 120s Done 120s Entering ResolveByKeep 121s 121s The following packages will be upgraded: 121s sudo 121s 1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 121s Need to get 980 kB of archives. 121s After this operation, 16.4 kB of additional disk space will be used. 121s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sudo s390x 1.9.16p2-1ubuntu1 [980 kB] 121s Fetched 980 kB in 1s (1777 kB/s) 121s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55977 files and directories currently installed.) 121s Preparing to unpack .../sudo_1.9.16p2-1ubuntu1_s390x.deb ... 121s Unpacking sudo (1.9.16p2-1ubuntu1) over (1.9.15p5-3ubuntu5) ... 121s Setting up sudo (1.9.16p2-1ubuntu1) ... 121s Installing new version of config file /etc/sudo.conf ... 121s Processing triggers for man-db (2.13.0-1) ... 122s Processing triggers for libc-bin (2.40-4ubuntu1) ... 122s autopkgtest: DBG: testbed command exited with code 0 122s 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'] 122s Reading package lists... 122s Building dependency tree... 122s Reading state information... 123s Starting pkgProblemResolver with broken count: 0 123s Starting 2 pkgProblemResolver with broken count: 0 123s Done 123s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 123s autopkgtest: DBG: testbed command exited with code 0 123s 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.dghVVw/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 123s autopkgtest: DBG: testbed command exited with code 1 123s autopkgtest [00:14:29]: rebooting testbed after setup commands that affected boot 123s autopkgtest: DBG: sending command to testbed: reboot 127s autopkgtest-virt-ssh: WARNING: ssh connection failed. Retrying in 3 seconds... 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dghVVw'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.dghVVw/autopkgtest-reboot 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dghVVw'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.dghVVw/autopkgtest-reboot-prepare 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest [00:14:50]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 144s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.dghVVw/testbed-packages"], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dghVVw/testbed-packages /tmp/autopkgtest-work.5m_u5fw5/out/testbed-packages 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 145s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dghVVw'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.dghVVw/autopkgtest-reboot 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dghVVw'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.dghVVw/autopkgtest-reboot-prepare 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: Binaries: initialising 147s autopkgtest [00:14:53]: @@@@@@@@@@@@@@@@@@@@ apt-source sbuild 147s autopkgtest: DBG: blame += sbuild 147s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 147s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'sbuild'], kind short, sout pipe, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^buildd$'], kind short, sout pipe, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'buildd=0.88.3ubuntu1'], kind short, sout pipe, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^sbuild$'], kind short, sout pipe, serr raw, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'sbuild=0.88.3ubuntu1'], kind short, sout pipe, serr raw, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^sbuild-debian-developer-setup$'], kind short, sout pipe, serr raw, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'sbuild-debian-developer-setup=0.88.3ubuntu1'], kind short, sout pipe, serr raw, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libsbuild-perl$'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libsbuild-perl=0.88.3ubuntu1'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^sbuild-qemu$'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'sbuild-qemu=0.88.3ubuntu1'], kind short, sout pipe, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: install_deps: deps_new=[] 149s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s 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.dghVVw/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source sbuild=0.88.3ubuntu1 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 sbuild_*.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=sudo/1.9.16p2-1ubuntu1'] 150s + cd / 150s + mktemp -d /tmp/autopkgtest.dghVVw/build.XXX 150s + builddir=/tmp/autopkgtest.dghVVw/build.oqW 150s + cd /tmp/autopkgtest.dghVVw/build.oqW 150s + apt-get source -d -q --only-source sbuild=0.88.3ubuntu1 150s + OUT=Reading package lists... 150s NOTICE: 'sbuild' packaging is maintained in the 'Git' version control system at: 150s https://salsa.debian.org/debian/sbuild.git 150s Please use: 150s git clone https://salsa.debian.org/debian/sbuild.git 150s to retrieve the latest (possibly unreleased) updates to the package. 150s Need to get 259 kB of source archives. 150s Get:1 http://ftpmaster.internal/ubuntu plucky/main sbuild 0.88.3ubuntu1 (dsc) [2775 B] 150s Get:2 http://ftpmaster.internal/ubuntu plucky/main sbuild 0.88.3ubuntu1 (tar) [257 kB] 150s Fetched 259 kB in 0s (524 kB/s) 150s Download complete and in download only mode 150s + [ -n ] 150s + echo Reading package lists... 150s NOTICE: 'sbuild' packaging is maintained in the 'Git' version control system at: 150s https://salsa.debian.org/debian/sbuild.git 150s Please use: 150s git clone https://salsa.debian.org/debian/sbuild.git 150s to retrieve the latest (possibly unreleased) updates to the package. 150s Need to get 259 kB of source archives. 150s Get:1 http://ftpmaster.internal/ubuntu plucky/main sbuild 0.88.3ubuntu1 (dsc) [2775 B] 150s Get:2 http://ftpmaster.internal/ubuntu plucky/main sbuild 0.88.3ubuntu1 (tar) [257 kB] 150s Fetched 259 kB in 0s (524 kB/s) 150s Download complete and in download only mode 150s + grep ^Get: 150s Get:1 http://ftpmaster.internal/ubuntu plucky/main sbuild 0.88.3ubuntu1 (dsc) [2775 B] 150s Get:2 http://ftpmaster.internal/ubuntu plucky/main sbuild 0.88.3ubuntu1 (tar) [257 kB] 150s + dpkg-source -x sbuild_0.88.3ubuntu1.dsc src 150s gpgv: Signature made Fri Feb 7 12:08:05 2025 UTC 150s gpgv: using RSA key 4FB588A84C2DDE79A74C77876FA458DD1DB03F71 150s gpgv: Can't check signature: No public key 150s dpkg-source: warning: cannot verify inline signature for ./sbuild_0.88.3ubuntu1.dsc: no acceptable signature found 150s + chmod -R a+rX . 150s + cd src/. 150s + pwd 150s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest [00:14:56]: testing package sbuild version 0.88.3ubuntu1 150s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dghVVw/build.oqW/src/debian/ /tmp/autopkgtest-work.5m_u5fw5/out/pkg/debian/ 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: processing dependency apt 151s autopkgtest: DBG: processing dependency apt-utils 151s autopkgtest: DBG: processing dependency debootstrap 151s autopkgtest: DBG: processing dependency distro-info 151s autopkgtest: DBG: processing dependency lsb-release 151s autopkgtest: DBG: processing dependency sudo 151s autopkgtest: DBG: processing dependency wget 151s autopkgtest: DBG: processing dependency @ 151s autopkgtest: DBG: synthesised dependency libsbuild-perl 151s autopkgtest: DBG: synthesised dependency sbuild 151s autopkgtest: DBG: synthesised dependency sbuild-debian-developer-setup 151s autopkgtest: DBG: synthesised dependency buildd 151s autopkgtest: DBG: synthesised dependency sbuild-qemu 151s autopkgtest: DBG: Test defined: name build-procenv path debian/tests/build-procenv command "None" restrictions ['needs-root', 'skippable'] features [] depends ['apt', 'apt-utils', 'debootstrap', 'distro-info', 'lsb-release', 'sudo', 'wget', 'libsbuild-perl', 'sbuild', 'sbuild-debian-developer-setup', 'buildd', 'sbuild-qemu'] 151s autopkgtest: DBG: processing dependency build-essential 151s autopkgtest: DBG: processing dependency devscripts 151s autopkgtest: DBG: processing dependency diffoscope 151s autopkgtest: DBG: processing dependency fakeroot 151s autopkgtest: DBG: processing dependency gnupg 151s autopkgtest: DBG: processing dependency mmdebstrap (>= 1.5.4-2) 151s autopkgtest: DBG: processing dependency python3-apt 151s autopkgtest: DBG: processing dependency sbuild 151s autopkgtest: DBG: marked alternatives ['sbuild'] as a synthesised dependency 151s autopkgtest: DBG: processing dependency sqop 151s autopkgtest: DBG: processing dependency uidmap 151s autopkgtest: DBG: Test defined: name unshare path debian/tests/unshare command "None" restrictions ['allow-stderr'] features [] depends ['build-essential', 'devscripts', 'diffoscope', 'fakeroot', 'gnupg', 'mmdebstrap (>= 1.5.4-2)', 'python3-apt', 'sbuild', 'sqop', 'uidmap'] 151s autopkgtest: DBG: processing dependency binutils 151s autopkgtest: DBG: processing dependency gcc-for-host 151s autopkgtest: DBG: processing dependency libc6-dev 151s autopkgtest: DBG: processing dependency libcrypt-dev 151s autopkgtest: DBG: processing dependency libgcc-s1 151s autopkgtest: DBG: processing dependency linux-libc-dev 151s autopkgtest: DBG: processing dependency make 151s hint-testsuite-triggers SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 151s autopkgtest [00:14:57]: build not needed 151s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dghVVw/build.oqW/src/ /tmp/autopkgtest-work.5m_u5fw5/out/tests-tree/ 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: processing dependency apt 151s autopkgtest: DBG: processing dependency apt-utils 151s autopkgtest: DBG: processing dependency debootstrap 151s autopkgtest: DBG: processing dependency distro-info 151s autopkgtest: DBG: processing dependency lsb-release 151s autopkgtest: DBG: processing dependency sudo 151s autopkgtest: DBG: processing dependency wget 151s autopkgtest: DBG: processing dependency @ 151s autopkgtest: DBG: synthesised dependency libsbuild-perl 151s autopkgtest: DBG: synthesised dependency sbuild 151s autopkgtest: DBG: synthesised dependency sbuild-debian-developer-setup 151s autopkgtest: DBG: synthesised dependency buildd 151s autopkgtest: DBG: synthesised dependency sbuild-qemu 151s autopkgtest: DBG: Test defined: name build-procenv path debian/tests/build-procenv command "None" restrictions ['needs-root', 'skippable'] features [] depends ['apt', 'apt-utils', 'debootstrap', 'distro-info', 'lsb-release', 'sudo', 'wget', 'libsbuild-perl', 'sbuild', 'sbuild-debian-developer-setup', 'buildd', 'sbuild-qemu'] 151s autopkgtest: DBG: processing dependency build-essential 151s autopkgtest: DBG: processing dependency devscripts 151s autopkgtest: DBG: processing dependency diffoscope 151s autopkgtest: DBG: processing dependency fakeroot 151s autopkgtest: DBG: processing dependency gnupg 151s autopkgtest: DBG: processing dependency mmdebstrap (>= 1.5.4-2) 151s autopkgtest: DBG: processing dependency python3-apt 151s autopkgtest: DBG: processing dependency sbuild 151s autopkgtest: DBG: marked alternatives ['sbuild'] as a synthesised dependency 151s autopkgtest: DBG: processing dependency sqop 151s autopkgtest: DBG: processing dependency uidmap 151s autopkgtest: DBG: Test defined: name unshare path debian/tests/unshare command "None" restrictions ['allow-stderr'] features [] depends ['build-essential', 'devscripts', 'diffoscope', 'fakeroot', 'gnupg', 'mmdebstrap (>= 1.5.4-2)', 'python3-apt', 'sbuild', 'sqop', 'uidmap'] 151s autopkgtest: DBG: processing dependency binutils 151s autopkgtest: DBG: processing dependency gcc-for-host 151s autopkgtest: DBG: processing dependency libc6-dev 151s autopkgtest: DBG: processing dependency libcrypt-dev 151s autopkgtest: DBG: processing dependency libgcc-s1 151s autopkgtest: DBG: processing dependency linux-libc-dev 151s autopkgtest: DBG: processing dependency make 151s hint-testsuite-triggers SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 151s autopkgtest [00:14:57]: test build-procenv: preparing testbed 151s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['apt', 'apt-utils', 'debootstrap', 'distro-info', 'lsb-release', 'sudo', 'wget', 'libsbuild-perl', 'sbuild', 'sbuild-debian-developer-setup', 'buildd', 'sbuild-qemu'] 151s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 151s autopkgtest: DBG: install_deps: deps_new=['apt', 'apt-utils', 'debootstrap', 'distro-info', 'lsb-release', 'sudo', 'wget', 'libsbuild-perl', 'sbuild', 'sbuild-debian-developer-setup', 'buildd', 'sbuild-qemu'] 151s autopkgtest: DBG: install-deps: satisfying apt, apt-utils, debootstrap, distro-info, lsb-release, sudo, wget, libsbuild-perl, sbuild, sbuild-debian-developer-setup, buildd, sbuild-qemu 151s autopkgtest: DBG: can use apt-get on testbed: True 151s 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', 'apt, apt-utils, debootstrap, distro-info, lsb-release, sudo, wget, libsbuild-perl, sbuild, sbuild-debian-developer-setup, buildd, sbuild-qemu'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 151s Reading package lists... 151s Building dependency tree... 151s Reading state information... 152s Starting pkgProblemResolver with broken count: 0 152s Starting 2 pkgProblemResolver with broken count: 0 152s Done 152s The following NEW packages will be installed: 152s acl apt-cacher-ng autopkgtest buildd debootstrap devscripts dupload 152s ipxe-qemu libasound2-data libasound2t64 libb-hooks-op-check-perl 152s libboost-filesystem1.83.0 libboost-iostreams1.83.0 152s libboost-program-options1.83.0 libbrlapi0.8 libcacard0 libcares2 152s libclass-data-inheritable-perl libclass-method-modifiers-perl 152s libclass-xsaccessor-perl libclone-perl libdevel-callchecker-perl 152s libdevel-stacktrace-perl libdistro-info-perl libdynaloader-functions-perl 152s libemail-date-format-perl libencode-locale-perl libevent-2.1-7t64 152s libevent-pthreads-2.1-7t64 libexception-class-perl libfdt1 152s libfile-dirlist-perl libfile-homedir-perl libfile-listing-perl 152s libfile-touch-perl libfile-which-perl libfilesys-df-perl libfuse2t64 152s libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl 152s libhttp-cookies-perl libhttp-date-perl libhttp-message-perl 152s libhttp-negotiate-perl libimport-into-perl libio-html-perl libio-pty-perl 152s libio-socket-ssl-perl libipc-run-perl libjpeg-turbo8 libjpeg8 152s liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl 152s libmime-lite-perl libmodule-runtime-perl libmoo-perl libnet-http-perl 152s libnet-smtp-ssl-perl libnet-ssleay-perl libnsl2 libparams-classify-perl 152s libpcsclite1 libpixman-1-0 librdmacm1t64 librole-tiny-perl libsbuild-perl 152s libslirp0 libsub-quote-perl libtimedate-perl libtry-tiny-perl liburi-perl 152s liburing2 libusbredirparser1t64 libwww-perl libwww-robotrules-perl 152s libyaml-tiny-perl patchutils perl-openssl-defaults postfix python3-debian 152s python3-distro-info python3-pexpect python3-psutil python3-ptyprocess 152s qemu-system-common qemu-system-data qemu-system-x86 qemu-utils retry sbuild 152s sbuild-debian-developer-setup sbuild-qemu schroot schroot-common seabios 152s vmdb2 wdiff 152s 0 upgraded, 99 newly installed, 0 to remove and 0 not upgraded. 152s Need to get 24.6 MB of archives. 152s After this operation, 132 MB of additional disk space will be used. 152s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libcares2 s390x 1.34.4-2.1 [101 kB] 152s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libevent-2.1-7t64 s390x 2.1.12-stable-10 [145 kB] 152s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libevent-pthreads-2.1-7t64 s390x 2.1.12-stable-10 [7870 B] 152s Get:4 http://ftpmaster.internal/ubuntu plucky/universe s390x libfuse2t64 s390x 2.9.9-9 [89.9 kB] 152s Get:5 http://ftpmaster.internal/ubuntu plucky/universe s390x apt-cacher-ng s390x 3.7.5-1 [621 kB] 153s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 153s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x postfix s390x 3.9.1-10ubuntu1 [1305 kB] 153s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libboost-filesystem1.83.0 s390x 1.83.0-4.1ubuntu1 [288 kB] 153s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libboost-iostreams1.83.0 s390x 1.83.0-4.1ubuntu1 [259 kB] 153s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libboost-program-options1.83.0 s390x 1.83.0-4.1ubuntu1 [326 kB] 153s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x schroot-common all 1.6.13-6 [4612 B] 153s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x schroot s390x 1.6.13-6 [583 kB] 153s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x python3-distro-info all 1.13 [7798 B] 153s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x acl s390x 2.3.2-2 [40.4 kB] 153s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x python3-debian all 0.1.49ubuntu3 [116 kB] 153s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x retry s390x 1.0.5-3build1 [10.8 kB] 153s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x autopkgtest all 5.44 [196 kB] 153s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-dirlist-perl all 0.05-3 [7286 B] 153s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-which-perl all 1.27-2 [12.5 kB] 153s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-homedir-perl all 1.006-2 [37.0 kB] 153s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-touch-perl all 0.12-2 [7498 B] 153s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libio-pty-perl s390x 1:1.20-1build3 [31.6 kB] 153s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libipc-run-perl all 20231003.0-2 [91.5 kB] 153s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libclass-method-modifiers-perl all 2.15-1 [16.1 kB] 153s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libclass-xsaccessor-perl s390x 1.19-4build5 [34.2 kB] 153s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libb-hooks-op-check-perl s390x 0.22-3build2 [9566 B] 153s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdynaloader-functions-perl all 0.004-1 [11.4 kB] 153s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libdevel-callchecker-perl s390x 0.009-1build1 [14.2 kB] 153s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libparams-classify-perl s390x 0.015-2build6 [20.6 kB] 153s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libmodule-runtime-perl all 0.016-2 [16.4 kB] 153s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libimport-into-perl all 1.002005-2 [10.7 kB] 153s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x librole-tiny-perl all 2.002004-1 [16.3 kB] 153s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libsub-quote-perl all 2.006008-1ubuntu1 [20.7 kB] 153s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libmoo-perl all 2.005005-1 [47.4 kB] 153s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libencode-locale-perl all 1.05-3 [11.6 kB] 153s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libtimedate-perl all 2.3300-2 [34.0 kB] 153s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-date-perl all 6.06-1 [10.2 kB] 153s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-listing-perl all 6.16-1 [11.3 kB] 153s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-tagset-perl all 3.24-1 [14.1 kB] 153s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x liburi-perl all 5.30-1 [94.4 kB] 153s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-parser-perl s390x 3.83-1build1 [87.8 kB] 153s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-tree-perl all 5.07-3 [200 kB] 153s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libclone-perl s390x 0.47-1 [10.7 kB] 153s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libio-html-perl all 1.004-3 [15.9 kB] 153s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x liblwp-mediatypes-perl all 6.04-2 [20.1 kB] 153s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-message-perl all 7.00-2ubuntu1 [75.9 kB] 153s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-cookies-perl all 6.11-1 [18.2 kB] 153s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-negotiate-perl all 6.01-2 [12.4 kB] 153s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x perl-openssl-defaults s390x 7build3 [6628 B] 153s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libnet-ssleay-perl s390x 1.94-2 [319 kB] 153s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libio-socket-ssl-perl all 2.089-1 [200 kB] 153s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libnet-http-perl all 6.23-1 [22.3 kB] 153s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x liblwp-protocol-https-perl all 6.14-1 [9040 B] 153s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libtry-tiny-perl all 0.32-1 [21.2 kB] 153s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libwww-robotrules-perl all 6.02-1 [12.6 kB] 153s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libwww-perl all 6.77-1 [138 kB] 153s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x patchutils s390x 0.4.2-1build3 [79.2 kB] 153s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x wdiff s390x 1.2.2-7 [29.8 kB] 153s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x devscripts all 2.25.2 [1058 kB] 153s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x dupload all 2.11.2 [28.5 kB] 153s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x ipxe-qemu all 1.21.1+git-20220113.fbbdc3926-0ubuntu2 [1565 kB] 153s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 153s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 153s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libbrlapi0.8 s390x 6.7-1ubuntu2 [32.5 kB] 153s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libpcsclite1 s390x 2.3.1-1 [24.5 kB] 153s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libcacard0 s390x 1:2.8.0-3build4 [37.8 kB] 153s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libclass-data-inheritable-perl all 0.10-1 [8038 B] 153s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libdevel-stacktrace-perl all 2.0500-1 [22.1 kB] 153s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libdistro-info-perl all 1.13 [5846 B] 153s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libemail-date-format-perl all 1.008-1 [6772 B] 153s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libexception-class-perl all 1.45-1 [28.6 kB] 153s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libfilesys-df-perl s390x 0.92-7build5 [11.1 kB] 153s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 153s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 153s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libnet-smtp-ssl-perl all 1.04-2 [6218 B] 153s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libmailtools-perl all 2.22-1 [77.1 kB] 153s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libmime-lite-perl all 3.033-2 [61.7 kB] 153s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 153s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x librdmacm1t64 s390x 55.0-1ubuntu1 [73.7 kB] 153s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libslirp0 s390x 4.8.0-1ubuntu1 [66.3 kB] 153s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x liburing2 s390x 2.9-1 [25.9 kB] 153s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libusbredirparser1t64 s390x 0.15.0-1 [16.3 kB] 153s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libyaml-tiny-perl all 1.76-1 [24.2 kB] 153s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ptyprocess all 0.7.0-6 [14.8 kB] 153s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pexpect all 4.9-3 [48.1 kB] 153s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 153s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-common s390x 1:9.2.0+ds-4ubuntu3 [920 kB] 154s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-data all 1:9.2.0+ds-4ubuntu3 [2334 kB] 154s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libfdt1 s390x 1.7.2-2build1 [21.4 kB] 154s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x seabios all 1.16.3-2 [175 kB] 154s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-system-x86 s390x 1:9.2.0+ds-4ubuntu3 [8392 kB] 154s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x qemu-utils s390x 1:9.2.0+ds-4ubuntu3 [2100 kB] 154s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libsbuild-perl all 0.88.3ubuntu1 [98.4 kB] 154s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x sbuild all 0.88.3ubuntu1 [99.1 kB] 154s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x debootstrap all 1.0.140 [50.1 kB] 154s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x vmdb2 all 0.40-2 [41.1 kB] 154s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x sbuild-qemu all 0.88.3ubuntu1 [22.2 kB] 154s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x buildd all 0.88.3ubuntu1 [63.8 kB] 154s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x sbuild-debian-developer-setup all 0.88.3ubuntu1 [8838 B] 155s Preconfiguring packages ... 155s Fetched 24.6 MB in 2s (11.0 MB/s) 155s Selecting previously unselected package libcares2:s390x. 155s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55977 files and directories currently installed.) 155s Preparing to unpack .../00-libcares2_1.34.4-2.1_s390x.deb ... 155s Unpacking libcares2:s390x (1.34.4-2.1) ... 155s Selecting previously unselected package libevent-2.1-7t64:s390x. 155s Preparing to unpack .../01-libevent-2.1-7t64_2.1.12-stable-10_s390x.deb ... 155s Unpacking libevent-2.1-7t64:s390x (2.1.12-stable-10) ... 155s Selecting previously unselected package libevent-pthreads-2.1-7t64:s390x. 155s Preparing to unpack .../02-libevent-pthreads-2.1-7t64_2.1.12-stable-10_s390x.deb ... 155s Unpacking libevent-pthreads-2.1-7t64:s390x (2.1.12-stable-10) ... 155s Selecting previously unselected package libfuse2t64:s390x. 155s Preparing to unpack .../03-libfuse2t64_2.9.9-9_s390x.deb ... 155s Adding 'diversion of /lib/s390x-linux-gnu/libfuse.so.2 to /lib/s390x-linux-gnu/libfuse.so.2.usr-is-merged by libfuse2t64' 155s Adding 'diversion of /lib/s390x-linux-gnu/libfuse.so.2.9.9 to /lib/s390x-linux-gnu/libfuse.so.2.9.9.usr-is-merged by libfuse2t64' 155s Adding 'diversion of /lib/s390x-linux-gnu/libulockmgr.so.1 to /lib/s390x-linux-gnu/libulockmgr.so.1.usr-is-merged by libfuse2t64' 155s Adding 'diversion of /lib/s390x-linux-gnu/libulockmgr.so.1.0.1 to /lib/s390x-linux-gnu/libulockmgr.so.1.0.1.usr-is-merged by libfuse2t64' 155s Unpacking libfuse2t64:s390x (2.9.9-9) ... 155s Selecting previously unselected package apt-cacher-ng. 155s Preparing to unpack .../04-apt-cacher-ng_3.7.5-1_s390x.deb ... 155s Unpacking apt-cacher-ng (3.7.5-1) ... 155s Selecting previously unselected package libnsl2:s390x. 155s Preparing to unpack .../05-libnsl2_1.3.0-3build3_s390x.deb ... 155s Unpacking libnsl2:s390x (1.3.0-3build3) ... 155s Selecting previously unselected package postfix. 155s Preparing to unpack .../06-postfix_3.9.1-10ubuntu1_s390x.deb ... 155s Unpacking postfix (3.9.1-10ubuntu1) ... 155s Selecting previously unselected package libboost-filesystem1.83.0:s390x. 155s Preparing to unpack .../07-libboost-filesystem1.83.0_1.83.0-4.1ubuntu1_s390x.deb ... 155s Unpacking libboost-filesystem1.83.0:s390x (1.83.0-4.1ubuntu1) ... 155s Selecting previously unselected package libboost-iostreams1.83.0:s390x. 155s Preparing to unpack .../08-libboost-iostreams1.83.0_1.83.0-4.1ubuntu1_s390x.deb ... 155s Unpacking libboost-iostreams1.83.0:s390x (1.83.0-4.1ubuntu1) ... 155s Selecting previously unselected package libboost-program-options1.83.0:s390x. 155s Preparing to unpack .../09-libboost-program-options1.83.0_1.83.0-4.1ubuntu1_s390x.deb ... 155s Unpacking libboost-program-options1.83.0:s390x (1.83.0-4.1ubuntu1) ... 155s Selecting previously unselected package schroot-common. 155s Preparing to unpack .../10-schroot-common_1.6.13-6_all.deb ... 155s Unpacking schroot-common (1.6.13-6) ... 155s Selecting previously unselected package schroot. 155s Preparing to unpack .../11-schroot_1.6.13-6_s390x.deb ... 155s Unpacking schroot (1.6.13-6) ... 155s Selecting previously unselected package python3-distro-info. 155s Preparing to unpack .../12-python3-distro-info_1.13_all.deb ... 155s Unpacking python3-distro-info (1.13) ... 155s Selecting previously unselected package acl. 155s Preparing to unpack .../13-acl_2.3.2-2_s390x.deb ... 155s Unpacking acl (2.3.2-2) ... 155s Selecting previously unselected package python3-debian. 155s Preparing to unpack .../14-python3-debian_0.1.49ubuntu3_all.deb ... 155s Unpacking python3-debian (0.1.49ubuntu3) ... 155s Selecting previously unselected package retry. 155s Preparing to unpack .../15-retry_1.0.5-3build1_s390x.deb ... 155s Unpacking retry (1.0.5-3build1) ... 155s Selecting previously unselected package autopkgtest. 155s Preparing to unpack .../16-autopkgtest_5.44_all.deb ... 155s Unpacking autopkgtest (5.44) ... 155s Selecting previously unselected package libfile-dirlist-perl. 155s Preparing to unpack .../17-libfile-dirlist-perl_0.05-3_all.deb ... 155s Unpacking libfile-dirlist-perl (0.05-3) ... 156s Selecting previously unselected package libfile-which-perl. 156s Preparing to unpack .../18-libfile-which-perl_1.27-2_all.deb ... 156s Unpacking libfile-which-perl (1.27-2) ... 156s Selecting previously unselected package libfile-homedir-perl. 156s Preparing to unpack .../19-libfile-homedir-perl_1.006-2_all.deb ... 156s Unpacking libfile-homedir-perl (1.006-2) ... 156s Selecting previously unselected package libfile-touch-perl. 156s Preparing to unpack .../20-libfile-touch-perl_0.12-2_all.deb ... 156s Unpacking libfile-touch-perl (0.12-2) ... 156s Selecting previously unselected package libio-pty-perl. 156s Preparing to unpack .../21-libio-pty-perl_1%3a1.20-1build3_s390x.deb ... 156s Unpacking libio-pty-perl (1:1.20-1build3) ... 156s Selecting previously unselected package libipc-run-perl. 156s Preparing to unpack .../22-libipc-run-perl_20231003.0-2_all.deb ... 156s Unpacking libipc-run-perl (20231003.0-2) ... 156s Selecting previously unselected package libclass-method-modifiers-perl. 156s Preparing to unpack .../23-libclass-method-modifiers-perl_2.15-1_all.deb ... 156s Unpacking libclass-method-modifiers-perl (2.15-1) ... 156s Selecting previously unselected package libclass-xsaccessor-perl. 156s Preparing to unpack .../24-libclass-xsaccessor-perl_1.19-4build5_s390x.deb ... 156s Unpacking libclass-xsaccessor-perl (1.19-4build5) ... 156s Selecting previously unselected package libb-hooks-op-check-perl:s390x. 156s Preparing to unpack .../25-libb-hooks-op-check-perl_0.22-3build2_s390x.deb ... 156s Unpacking libb-hooks-op-check-perl:s390x (0.22-3build2) ... 156s Selecting previously unselected package libdynaloader-functions-perl. 156s Preparing to unpack .../26-libdynaloader-functions-perl_0.004-1_all.deb ... 156s Unpacking libdynaloader-functions-perl (0.004-1) ... 156s Selecting previously unselected package libdevel-callchecker-perl:s390x. 156s Preparing to unpack .../27-libdevel-callchecker-perl_0.009-1build1_s390x.deb ... 156s Unpacking libdevel-callchecker-perl:s390x (0.009-1build1) ... 156s Selecting previously unselected package libparams-classify-perl:s390x. 156s Preparing to unpack .../28-libparams-classify-perl_0.015-2build6_s390x.deb ... 156s Unpacking libparams-classify-perl:s390x (0.015-2build6) ... 156s Selecting previously unselected package libmodule-runtime-perl. 156s Preparing to unpack .../29-libmodule-runtime-perl_0.016-2_all.deb ... 156s Unpacking libmodule-runtime-perl (0.016-2) ... 156s Selecting previously unselected package libimport-into-perl. 156s Preparing to unpack .../30-libimport-into-perl_1.002005-2_all.deb ... 156s Unpacking libimport-into-perl (1.002005-2) ... 156s Selecting previously unselected package librole-tiny-perl. 156s Preparing to unpack .../31-librole-tiny-perl_2.002004-1_all.deb ... 156s Unpacking librole-tiny-perl (2.002004-1) ... 156s Selecting previously unselected package libsub-quote-perl. 156s Preparing to unpack .../32-libsub-quote-perl_2.006008-1ubuntu1_all.deb ... 156s Unpacking libsub-quote-perl (2.006008-1ubuntu1) ... 156s Selecting previously unselected package libmoo-perl. 156s Preparing to unpack .../33-libmoo-perl_2.005005-1_all.deb ... 156s Unpacking libmoo-perl (2.005005-1) ... 156s Selecting previously unselected package libencode-locale-perl. 156s Preparing to unpack .../34-libencode-locale-perl_1.05-3_all.deb ... 156s Unpacking libencode-locale-perl (1.05-3) ... 156s Selecting previously unselected package libtimedate-perl. 156s Preparing to unpack .../35-libtimedate-perl_2.3300-2_all.deb ... 156s Unpacking libtimedate-perl (2.3300-2) ... 156s Selecting previously unselected package libhttp-date-perl. 156s Preparing to unpack .../36-libhttp-date-perl_6.06-1_all.deb ... 156s Unpacking libhttp-date-perl (6.06-1) ... 156s Selecting previously unselected package libfile-listing-perl. 156s Preparing to unpack .../37-libfile-listing-perl_6.16-1_all.deb ... 156s Unpacking libfile-listing-perl (6.16-1) ... 156s Selecting previously unselected package libhtml-tagset-perl. 156s Preparing to unpack .../38-libhtml-tagset-perl_3.24-1_all.deb ... 156s Unpacking libhtml-tagset-perl (3.24-1) ... 156s Selecting previously unselected package liburi-perl. 156s Preparing to unpack .../39-liburi-perl_5.30-1_all.deb ... 156s Unpacking liburi-perl (5.30-1) ... 156s Selecting previously unselected package libhtml-parser-perl:s390x. 156s Preparing to unpack .../40-libhtml-parser-perl_3.83-1build1_s390x.deb ... 156s Unpacking libhtml-parser-perl:s390x (3.83-1build1) ... 156s Selecting previously unselected package libhtml-tree-perl. 156s Preparing to unpack .../41-libhtml-tree-perl_5.07-3_all.deb ... 156s Unpacking libhtml-tree-perl (5.07-3) ... 156s Selecting previously unselected package libclone-perl:s390x. 156s Preparing to unpack .../42-libclone-perl_0.47-1_s390x.deb ... 156s Unpacking libclone-perl:s390x (0.47-1) ... 156s Selecting previously unselected package libio-html-perl. 156s Preparing to unpack .../43-libio-html-perl_1.004-3_all.deb ... 156s Unpacking libio-html-perl (1.004-3) ... 156s Selecting previously unselected package liblwp-mediatypes-perl. 156s Preparing to unpack .../44-liblwp-mediatypes-perl_6.04-2_all.deb ... 156s Unpacking liblwp-mediatypes-perl (6.04-2) ... 156s Selecting previously unselected package libhttp-message-perl. 156s Preparing to unpack .../45-libhttp-message-perl_7.00-2ubuntu1_all.deb ... 156s Unpacking libhttp-message-perl (7.00-2ubuntu1) ... 156s Selecting previously unselected package libhttp-cookies-perl. 156s Preparing to unpack .../46-libhttp-cookies-perl_6.11-1_all.deb ... 156s Unpacking libhttp-cookies-perl (6.11-1) ... 156s Selecting previously unselected package libhttp-negotiate-perl. 156s Preparing to unpack .../47-libhttp-negotiate-perl_6.01-2_all.deb ... 156s Unpacking libhttp-negotiate-perl (6.01-2) ... 156s Selecting previously unselected package perl-openssl-defaults:s390x. 156s Preparing to unpack .../48-perl-openssl-defaults_7build3_s390x.deb ... 156s Unpacking perl-openssl-defaults:s390x (7build3) ... 156s Selecting previously unselected package libnet-ssleay-perl:s390x. 156s Preparing to unpack .../49-libnet-ssleay-perl_1.94-2_s390x.deb ... 156s Unpacking libnet-ssleay-perl:s390x (1.94-2) ... 156s Selecting previously unselected package libio-socket-ssl-perl. 156s Preparing to unpack .../50-libio-socket-ssl-perl_2.089-1_all.deb ... 156s Unpacking libio-socket-ssl-perl (2.089-1) ... 156s Selecting previously unselected package libnet-http-perl. 156s Preparing to unpack .../51-libnet-http-perl_6.23-1_all.deb ... 156s Unpacking libnet-http-perl (6.23-1) ... 156s Selecting previously unselected package liblwp-protocol-https-perl. 156s Preparing to unpack .../52-liblwp-protocol-https-perl_6.14-1_all.deb ... 156s Unpacking liblwp-protocol-https-perl (6.14-1) ... 156s Selecting previously unselected package libtry-tiny-perl. 156s Preparing to unpack .../53-libtry-tiny-perl_0.32-1_all.deb ... 156s Unpacking libtry-tiny-perl (0.32-1) ... 156s Selecting previously unselected package libwww-robotrules-perl. 156s Preparing to unpack .../54-libwww-robotrules-perl_6.02-1_all.deb ... 156s Unpacking libwww-robotrules-perl (6.02-1) ... 156s Selecting previously unselected package libwww-perl. 156s Preparing to unpack .../55-libwww-perl_6.77-1_all.deb ... 156s Unpacking libwww-perl (6.77-1) ... 156s Selecting previously unselected package patchutils. 156s Preparing to unpack .../56-patchutils_0.4.2-1build3_s390x.deb ... 156s Unpacking patchutils (0.4.2-1build3) ... 156s Selecting previously unselected package wdiff. 156s Preparing to unpack .../57-wdiff_1.2.2-7_s390x.deb ... 156s Unpacking wdiff (1.2.2-7) ... 156s Selecting previously unselected package devscripts. 156s Preparing to unpack .../58-devscripts_2.25.2_all.deb ... 156s Unpacking devscripts (2.25.2) ... 156s Selecting previously unselected package dupload. 156s Preparing to unpack .../59-dupload_2.11.2_all.deb ... 156s Unpacking dupload (2.11.2) ... 156s Selecting previously unselected package ipxe-qemu. 156s Preparing to unpack .../60-ipxe-qemu_1.21.1+git-20220113.fbbdc3926-0ubuntu2_all.deb ... 156s Unpacking ipxe-qemu (1.21.1+git-20220113.fbbdc3926-0ubuntu2) ... 156s Selecting previously unselected package libasound2-data. 156s Preparing to unpack .../61-libasound2-data_1.2.13-1build1_all.deb ... 156s Unpacking libasound2-data (1.2.13-1build1) ... 156s Selecting previously unselected package libasound2t64:s390x. 156s Preparing to unpack .../62-libasound2t64_1.2.13-1build1_s390x.deb ... 156s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 156s Selecting previously unselected package libbrlapi0.8:s390x. 156s Preparing to unpack .../63-libbrlapi0.8_6.7-1ubuntu2_s390x.deb ... 156s Unpacking libbrlapi0.8:s390x (6.7-1ubuntu2) ... 156s Selecting previously unselected package libpcsclite1:s390x. 156s Preparing to unpack .../64-libpcsclite1_2.3.1-1_s390x.deb ... 156s Unpacking libpcsclite1:s390x (2.3.1-1) ... 156s Selecting previously unselected package libcacard0:s390x. 156s Preparing to unpack .../65-libcacard0_1%3a2.8.0-3build4_s390x.deb ... 156s Unpacking libcacard0:s390x (1:2.8.0-3build4) ... 157s Selecting previously unselected package libclass-data-inheritable-perl. 157s Preparing to unpack .../66-libclass-data-inheritable-perl_0.10-1_all.deb ... 157s Unpacking libclass-data-inheritable-perl (0.10-1) ... 157s Selecting previously unselected package libdevel-stacktrace-perl. 157s Preparing to unpack .../67-libdevel-stacktrace-perl_2.0500-1_all.deb ... 157s Unpacking libdevel-stacktrace-perl (2.0500-1) ... 157s Selecting previously unselected package libdistro-info-perl. 157s Preparing to unpack .../68-libdistro-info-perl_1.13_all.deb ... 157s Unpacking libdistro-info-perl (1.13) ... 157s Selecting previously unselected package libemail-date-format-perl. 157s Preparing to unpack .../69-libemail-date-format-perl_1.008-1_all.deb ... 157s Unpacking libemail-date-format-perl (1.008-1) ... 157s Selecting previously unselected package libexception-class-perl. 157s Preparing to unpack .../70-libexception-class-perl_1.45-1_all.deb ... 157s Unpacking libexception-class-perl (1.45-1) ... 157s Selecting previously unselected package libfilesys-df-perl. 157s Preparing to unpack .../71-libfilesys-df-perl_0.92-7build5_s390x.deb ... 157s Unpacking libfilesys-df-perl (0.92-7build5) ... 157s Selecting previously unselected package libjpeg-turbo8:s390x. 157s Preparing to unpack .../72-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 157s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 157s Selecting previously unselected package libjpeg8:s390x. 157s Preparing to unpack .../73-libjpeg8_8c-2ubuntu11_s390x.deb ... 157s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 157s Selecting previously unselected package libnet-smtp-ssl-perl. 157s Preparing to unpack .../74-libnet-smtp-ssl-perl_1.04-2_all.deb ... 157s Unpacking libnet-smtp-ssl-perl (1.04-2) ... 157s Selecting previously unselected package libmailtools-perl. 157s Preparing to unpack .../75-libmailtools-perl_2.22-1_all.deb ... 157s Unpacking libmailtools-perl (2.22-1) ... 157s Selecting previously unselected package libmime-lite-perl. 157s Preparing to unpack .../76-libmime-lite-perl_3.033-2_all.deb ... 157s Unpacking libmime-lite-perl (3.033-2) ... 157s Selecting previously unselected package libpixman-1-0:s390x. 157s Preparing to unpack .../77-libpixman-1-0_0.44.0-3_s390x.deb ... 157s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 157s Selecting previously unselected package librdmacm1t64:s390x. 157s Preparing to unpack .../78-librdmacm1t64_55.0-1ubuntu1_s390x.deb ... 157s Unpacking librdmacm1t64:s390x (55.0-1ubuntu1) ... 157s Selecting previously unselected package libslirp0:s390x. 157s Preparing to unpack .../79-libslirp0_4.8.0-1ubuntu1_s390x.deb ... 157s Unpacking libslirp0:s390x (4.8.0-1ubuntu1) ... 157s Selecting previously unselected package liburing2:s390x. 157s Preparing to unpack .../80-liburing2_2.9-1_s390x.deb ... 157s Unpacking liburing2:s390x (2.9-1) ... 157s Selecting previously unselected package libusbredirparser1t64:s390x. 157s Preparing to unpack .../81-libusbredirparser1t64_0.15.0-1_s390x.deb ... 157s Unpacking libusbredirparser1t64:s390x (0.15.0-1) ... 157s Selecting previously unselected package libyaml-tiny-perl. 157s Preparing to unpack .../82-libyaml-tiny-perl_1.76-1_all.deb ... 157s Unpacking libyaml-tiny-perl (1.76-1) ... 157s Selecting previously unselected package python3-ptyprocess. 157s Preparing to unpack .../83-python3-ptyprocess_0.7.0-6_all.deb ... 157s Unpacking python3-ptyprocess (0.7.0-6) ... 157s Selecting previously unselected package python3-pexpect. 157s Preparing to unpack .../84-python3-pexpect_4.9-3_all.deb ... 157s Unpacking python3-pexpect (4.9-3) ... 157s Selecting previously unselected package python3-psutil. 157s Preparing to unpack .../85-python3-psutil_5.9.8-2build3_s390x.deb ... 157s Unpacking python3-psutil (5.9.8-2build3) ... 157s Selecting previously unselected package qemu-system-common. 157s Preparing to unpack .../86-qemu-system-common_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 157s Unpacking qemu-system-common (1:9.2.0+ds-4ubuntu3) ... 157s Selecting previously unselected package qemu-system-data. 157s Preparing to unpack .../87-qemu-system-data_1%3a9.2.0+ds-4ubuntu3_all.deb ... 157s Unpacking qemu-system-data (1:9.2.0+ds-4ubuntu3) ... 157s Selecting previously unselected package libfdt1:s390x. 157s Preparing to unpack .../88-libfdt1_1.7.2-2build1_s390x.deb ... 157s Unpacking libfdt1:s390x (1.7.2-2build1) ... 157s Selecting previously unselected package seabios. 157s Preparing to unpack .../89-seabios_1.16.3-2_all.deb ... 157s Unpacking seabios (1.16.3-2) ... 157s Selecting previously unselected package qemu-system-x86. 157s Preparing to unpack .../90-qemu-system-x86_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 157s Unpacking qemu-system-x86 (1:9.2.0+ds-4ubuntu3) ... 157s Selecting previously unselected package qemu-utils. 157s Preparing to unpack .../91-qemu-utils_1%3a9.2.0+ds-4ubuntu3_s390x.deb ... 157s Unpacking qemu-utils (1:9.2.0+ds-4ubuntu3) ... 157s Selecting previously unselected package libsbuild-perl. 157s Preparing to unpack .../92-libsbuild-perl_0.88.3ubuntu1_all.deb ... 157s Unpacking libsbuild-perl (0.88.3ubuntu1) ... 157s Selecting previously unselected package sbuild. 157s Preparing to unpack .../93-sbuild_0.88.3ubuntu1_all.deb ... 157s Unpacking sbuild (0.88.3ubuntu1) ... 157s Selecting previously unselected package debootstrap. 157s Preparing to unpack .../94-debootstrap_1.0.140_all.deb ... 157s Unpacking debootstrap (1.0.140) ... 157s Selecting previously unselected package vmdb2. 157s Preparing to unpack .../95-vmdb2_0.40-2_all.deb ... 157s Unpacking vmdb2 (0.40-2) ... 157s Selecting previously unselected package sbuild-qemu. 157s Preparing to unpack .../96-sbuild-qemu_0.88.3ubuntu1_all.deb ... 157s Unpacking sbuild-qemu (0.88.3ubuntu1) ... 157s Selecting previously unselected package buildd. 157s Preparing to unpack .../97-buildd_0.88.3ubuntu1_all.deb ... 157s Unpacking buildd (0.88.3ubuntu1) ... 157s Selecting previously unselected package sbuild-debian-developer-setup. 157s Preparing to unpack .../98-sbuild-debian-developer-setup_0.88.3ubuntu1_all.deb ... 157s Unpacking sbuild-debian-developer-setup (0.88.3ubuntu1) ... 157s Setting up libboost-program-options1.83.0:s390x (1.83.0-4.1ubuntu1) ... 157s Setting up libpixman-1-0:s390x (0.44.0-3) ... 157s Setting up wdiff (1.2.2-7) ... 157s Setting up libfile-which-perl (1.27-2) ... 157s Setting up debootstrap (1.0.140) ... 157s Setting up libdynaloader-functions-perl (0.004-1) ... 157s Setting up libclass-method-modifiers-perl (2.15-1) ... 157s Setting up libio-pty-perl (1:1.20-1build3) ... 157s Setting up libclone-perl:s390x (0.47-1) ... 157s Setting up libdistro-info-perl (1.13) ... 157s Setting up libevent-pthreads-2.1-7t64:s390x (2.1.12-stable-10) ... 157s Setting up libhtml-tagset-perl (3.24-1) ... 157s Setting up libfilesys-df-perl (0.92-7build5) ... 157s Setting up liblwp-mediatypes-perl (6.04-2) ... 157s Setting up libtry-tiny-perl (0.32-1) ... 157s Setting up perl-openssl-defaults:s390x (7build3) ... 157s Setting up libevent-2.1-7t64:s390x (2.1.12-stable-10) ... 157s Setting up libencode-locale-perl (1.05-3) ... 157s Setting up libboost-filesystem1.83.0:s390x (1.83.0-4.1ubuntu1) ... 157s Setting up libfdt1:s390x (1.7.2-2build1) ... 157s Setting up libyaml-tiny-perl (1.76-1) ... 157s Setting up python3-psutil (5.9.8-2build3) ... 158s Setting up acl (2.3.2-2) ... 158s Setting up retry (1.0.5-3build1) ... 158s Setting up libasound2-data (1.2.13-1build1) ... 158s Setting up patchutils (0.4.2-1build3) ... 158s Setting up dupload (2.11.2) ... 158s Setting up libclass-data-inheritable-perl (0.10-1) ... 158s Setting up libasound2t64:s390x (1.2.13-1build1) ... 158s Setting up libboost-iostreams1.83.0:s390x (1.83.0-4.1ubuntu1) ... 158s Setting up python3-debian (0.1.49ubuntu3) ... 158s Setting up libemail-date-format-perl (1.008-1) ... 158s Setting up libcares2:s390x (1.34.4-2.1) ... 158s Setting up libio-html-perl (1.004-3) ... 158s Setting up libb-hooks-op-check-perl:s390x (0.22-3build2) ... 158s Setting up libipc-run-perl (20231003.0-2) ... 158s Setting up libpcsclite1:s390x (2.3.1-1) ... 158s Setting up schroot-common (1.6.13-6) ... 158s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 158s Setting up qemu-system-data (1:9.2.0+ds-4ubuntu3) ... 158s Setting up seabios (1.16.3-2) ... 158s Setting up libtimedate-perl (2.3300-2) ... 158s Setting up libslirp0:s390x (4.8.0-1ubuntu1) ... 158s Setting up libusbredirparser1t64:s390x (0.15.0-1) ... 158s Setting up ipxe-qemu (1.21.1+git-20220113.fbbdc3926-0ubuntu2) ... 158s Setting up libnsl2:s390x (1.3.0-3build3) ... 158s Setting up librole-tiny-perl (2.002004-1) ... 158s Setting up librdmacm1t64:s390x (55.0-1ubuntu1) ... 158s Setting up libsub-quote-perl (2.006008-1ubuntu1) ... 158s Setting up libdevel-stacktrace-perl (2.0500-1) ... 158s Setting up libclass-xsaccessor-perl (1.19-4build5) ... 158s Setting up libbrlapi0.8:s390x (6.7-1ubuntu2) ... 158s Setting up libfile-dirlist-perl (0.05-3) ... 158s Setting up liburing2:s390x (2.9-1) ... 158s Setting up libfile-homedir-perl (1.006-2) ... 158s Setting up libfuse2t64:s390x (2.9.9-9) ... 158s Removing 'diversion of /lib/s390x-linux-gnu/libfuse.so.2 to /lib/s390x-linux-gnu/libfuse.so.2.usr-is-merged by libfuse2t64' 158s Removing 'diversion of /lib/s390x-linux-gnu/libfuse.so.2.9.9 to /lib/s390x-linux-gnu/libfuse.so.2.9.9.usr-is-merged by libfuse2t64' 158s Removing 'diversion of /lib/s390x-linux-gnu/libulockmgr.so.1 to /lib/s390x-linux-gnu/libulockmgr.so.1.usr-is-merged by libfuse2t64' 158s Removing 'diversion of /lib/s390x-linux-gnu/libulockmgr.so.1.0.1 to /lib/s390x-linux-gnu/libulockmgr.so.1.0.1.usr-is-merged by libfuse2t64' 158s Setting up python3-distro-info (1.13) ... 158s Setting up liburi-perl (5.30-1) ... 158s Setting up libfile-touch-perl (0.12-2) ... 158s Setting up python3-ptyprocess (0.7.0-6) ... 158s Setting up libnet-ssleay-perl:s390x (1.94-2) ... 158s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 158s Setting up schroot (1.6.13-6) ... 158s Created symlink '/etc/systemd/system/multi-user.target.wants/schroot.service' → '/usr/lib/systemd/system/schroot.service'. 158s Setting up libhttp-date-perl (6.06-1) ... 158s Setting up libfile-listing-perl (6.16-1) ... 158s Setting up libnet-http-perl (6.23-1) ... 158s Setting up libexception-class-perl (1.45-1) ... 158s Setting up libdevel-callchecker-perl:s390x (0.009-1build1) ... 158s Setting up libcacard0:s390x (1:2.8.0-3build4) ... 158s Setting up autopkgtest (5.44) ... 158s Setting up python3-pexpect (4.9-3) ... 158s Setting up postfix (3.9.1-10ubuntu1) ... 158s Created symlink '/etc/systemd/system/multi-user.target.wants/postfix.service' → '/usr/lib/systemd/system/postfix.service'. 159s info: Selecting UID from range 100 to 999 ... 159s 159s info: Selecting GID from range 100 to 999 ... 159s info: Adding system user `postfix' (UID 107) ... 159s info: Adding new group `postfix' (GID 110) ... 159s info: Adding new user `postfix' (UID 107) with group `postfix' ... 159s info: Not creating home directory `/var/spool/postfix'. 159s info: Selecting GID from range 100 to 999 ... 159s info: Adding group `postdrop' (GID 113) ... 159s Creating /etc/postfix/dynamicmaps.cf 159s setting myhostname: autopkgtest.local 159s setting alias maps 159s setting alias database 159s changing /etc/mailname to autopkgtest.local 159s setting myorigin 159s setting destinations: $myhostname, autopkgtest.local, localhost.local, , localhost 159s setting relayhost: 159s setting mynetworks: 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 159s clearing mailbox_command 159s setting mailbox_size_limit: 0 159s setting recipient_delimiter: + 161s setting inet_interfaces: all 163s setting inet_protocols: all 163s /etc/aliases does not exist, creating it. 163s WARNING: /etc/aliases exists, but does not have a root alias. 163s 163s Postfix (main.cf) is now set up with a default configuration. If you need to 163s make changes, edit /etc/postfix/main.cf (and others) as needed. To view 163s Postfix configuration values, see postconf(1). 163s 163s After modifying main.cf, be sure to run 'systemctl reload postfix'. 163s 165s Setting up libwww-robotrules-perl (6.02-1) ... 165s Setting up libhtml-parser-perl:s390x (3.83-1build1) ... 165s Setting up apt-cacher-ng (3.7.5-1) ... 166s Created symlink '/etc/systemd/system/multi-user.target.wants/apt-cacher-ng.service' → '/usr/lib/systemd/system/apt-cacher-ng.service'. 166s Setting up qemu-utils (1:9.2.0+ds-4ubuntu3) ... 166s Setting up libio-socket-ssl-perl (2.089-1) ... 166s Setting up libhttp-message-perl (7.00-2ubuntu1) ... 166s Setting up vmdb2 (0.40-2) ... 166s Setting up libhttp-negotiate-perl (6.01-2) ... 166s Setting up qemu-system-common (1:9.2.0+ds-4ubuntu3) ... 166s Created symlink '/etc/systemd/system/multi-user.target.wants/qemu-kvm.service' → '/usr/lib/systemd/system/qemu-kvm.service'. 167s Setting up libhttp-cookies-perl (6.11-1) ... 167s Setting up libhtml-tree-perl (5.07-3) ... 167s Setting up libparams-classify-perl:s390x (0.015-2build6) ... 167s Setting up qemu-system-x86 (1:9.2.0+ds-4ubuntu3) ... 167s Setting up libnet-smtp-ssl-perl (1.04-2) ... 167s Setting up libmodule-runtime-perl (0.016-2) ... 167s Setting up libmailtools-perl (2.22-1) ... 167s Setting up libmime-lite-perl (3.033-2) ... 167s Setting up libimport-into-perl (1.002005-2) ... 167s Setting up libmoo-perl (2.005005-1) ... 167s Setting up libsbuild-perl (0.88.3ubuntu1) ... 167s Setting up sbuild (0.88.3ubuntu1) ... 167s usermod: unlocking the user's password would result in a passwordless account. 167s You should set a password with usermod -p to unlock this user's password. 167s Setting up sbuild-debian-developer-setup (0.88.3ubuntu1) ... 167s Setting up sbuild-qemu (0.88.3ubuntu1) ... 167s Setting up liblwp-protocol-https-perl (6.14-1) ... 167s Setting up libwww-perl (6.77-1) ... 167s Setting up devscripts (2.25.2) ... 167s Setting up buildd (0.88.3ubuntu1) ... 167s usermod: unlocking the user's password would result in a passwordless account. 167s You should set a password with usermod -p to unlock this user's password. 167s Processing triggers for install-info (7.1.1-1) ... 167s Processing triggers for libc-bin (2.40-4ubuntu1) ... 167s Processing triggers for rsyslog (8.2412.0-2ubuntu1) ... 167s Processing triggers for ufw (0.36.2-9) ... 167s Processing triggers for man-db (2.13.0-1) ... 169s Processing triggers for postfix (3.9.1-10ubuntu1) ... 169s Restarting postfix 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libsbuild-perl'], kind short, sout pipe, serr pipe, env [] 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'sbuild'], kind short, sout pipe, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'sbuild-debian-developer-setup'], kind short, sout pipe, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'buildd'], kind short, sout pipe, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'sbuild-qemu'], kind short, sout pipe, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.dghVVw/build-procenv-packages.all"], kind short, sout raw, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dghVVw/build-procenv-packages.all /tmp/autopkgtest-work.5m_u5fw5/out/build-procenv-packages.all 170s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.dghVVw/build.oqW/src'], kind short, sout raw, serr raw, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.dghVVw/build.oqW/src already exists 171s autopkgtest [00:15:17]: test build-procenv: [----------------------- 171s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.dghVVw/wrapper.sh --debug --artifacts=/tmp/autopkgtest.dghVVw/build-procenv-artifacts --chdir=/tmp/autopkgtest.dghVVw/build.oqW/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.dghVVw/build-procenv-stderr --stdout=/tmp/autopkgtest.dghVVw/build-procenv-stdout --tmp=/tmp/autopkgtest.dghVVw/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=sudo/1.9.16p2-1ubuntu1 --make-executable=/tmp/autopkgtest.dghVVw/build.oqW/src/debian/tests/build-procenv -- /tmp/autopkgtest.dghVVw/build.oqW/src/debian/tests/build-procenv'], kind test, sout raw, serr raw, env [] 171s /tmp/autopkgtest.dghVVw/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.dghVVw/build-procenv-artifacts 171s /tmp/autopkgtest.dghVVw/wrapper.sh: changing to directory: /tmp/autopkgtest.dghVVw/build.oqW/src 171s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 171s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 171s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 171s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 171s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: LANG=C.UTF-8 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LANGUAGE 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_ADDRESS 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_ALL 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_COLLATE 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_CTYPE 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_IDENTIFICATION 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_MEASUREMENT 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_MESSAGES 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_MONETARY 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_NAME 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_NUMERIC 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_PAPER 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_TELEPHONE 171s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_TIME 171s /tmp/autopkgtest.dghVVw/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 171s /tmp/autopkgtest.dghVVw/wrapper.sh: pretending to be a login shell 171s /tmp/autopkgtest.dghVVw/wrapper.sh: will write standard error to /tmp/autopkgtest.dghVVw/build-procenv-stderr 171s /tmp/autopkgtest.dghVVw/wrapper.sh: will write stdout to /tmp/autopkgtest.dghVVw/build-procenv-stdout 171s /tmp/autopkgtest.dghVVw/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.dghVVw/autopkgtest_tmp 171s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 171s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 171s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sudo/1.9.16p2-1ubuntu1 171s /tmp/autopkgtest.dghVVw/wrapper.sh: marking as executable: /tmp/autopkgtest.dghVVw/build.oqW/src/debian/tests/build-procenv 171s /tmp/autopkgtest.dghVVw/wrapper.sh: command to run: /tmp/autopkgtest.dghVVw/build.oqW/src/debian/tests/build-procenv 171s /tmp/autopkgtest.dghVVw/wrapper.sh: copying /tmp/tmp.so3G2Zv9KX/out to stdout and file: /tmp/autopkgtest.dghVVw/build-procenv-stdout 171s /tmp/autopkgtest.dghVVw/wrapper.sh: copying /tmp/tmp.so3G2Zv9KX/err to standard error and file: /tmp/autopkgtest.dghVVw/build-procenv-stdout 171s /tmp/autopkgtest.dghVVw/wrapper.sh: writing script pid 3215 to /tmp/autopkgtest_script_pid 171s passwd: password changed. 171s INFO: Creating sbuild chroot 'plucky-s390x-sbuild' for release 'plucky' in directory '/tmp/autopkgtest.dghVVw/autopkgtest_tmp/schroot-plucky' from url 'http://ports.ubuntu.com/ubuntu-ports' 171s I: consider moving your ~/.sbuildrc to /root/.config/sbuild/config.pl 171s mkdir /tmp/autopkgtest.dghVVw/autopkgtest_tmp/schroot-plucky 171s I: Retrieving InRelease 172s I: Checking Release signature 172s I: Valid Release signature (key id F6ECB3762474EDA9D21B7022871920D1991BC93C) 172s I: Retrieving Packages 173s I: Validating Packages 173s I: Retrieving Packages 174s I: Validating Packages 175s I: Resolving dependencies of required packages... 177s I: Resolving dependencies of base packages... 184s I: Checking component main on http://ports.ubuntu.com/ubuntu-ports... 184s I: Retrieving apt 2.9.30 185s I: Validating apt 2.9.30 185s I: Retrieving base-files 13.5ubuntu3 185s I: Validating base-files 13.5ubuntu3 185s I: Retrieving base-passwd 3.6.6 185s I: Validating base-passwd 3.6.6 185s I: Retrieving bash 5.2.37-1ubuntu1 186s I: Validating bash 5.2.37-1ubuntu1 186s I: Retrieving binutils 2.44-1ubuntu1 186s I: Validating binutils 2.44-1ubuntu1 186s I: Retrieving binutils-common 2.44-1ubuntu1 186s I: Validating binutils-common 2.44-1ubuntu1 186s I: Retrieving binutils-s390x-linux-gnu 2.44-1ubuntu1 187s I: Validating binutils-s390x-linux-gnu 2.44-1ubuntu1 187s I: Retrieving bsdutils 1:2.40.2-14ubuntu1 187s I: Validating bsdutils 1:2.40.2-14ubuntu1 187s I: Retrieving build-essential 12.10ubuntu1 187s I: Validating build-essential 12.10ubuntu1 187s I: Retrieving bzip2 1.0.8-6 188s I: Validating bzip2 1.0.8-6 188s I: Retrieving coreutils 9.5-1ubuntu1 188s I: Validating coreutils 9.5-1ubuntu1 188s I: Retrieving cpp 4:14.2.0-1ubuntu1 189s I: Validating cpp 4:14.2.0-1ubuntu1 189s I: Retrieving cpp-14 14.2.0-17ubuntu1 189s I: Validating cpp-14 14.2.0-17ubuntu1 189s I: Retrieving cpp-14-s390x-linux-gnu 14.2.0-17ubuntu1 190s I: Validating cpp-14-s390x-linux-gnu 14.2.0-17ubuntu1 190s I: Retrieving cpp-s390x-linux-gnu 4:14.2.0-1ubuntu1 190s I: Validating cpp-s390x-linux-gnu 4:14.2.0-1ubuntu1 190s I: Retrieving dash 0.5.12-12ubuntu1 190s I: Validating dash 0.5.12-12ubuntu1 190s I: Retrieving debconf 1.5.87ubuntu1 190s I: Validating debconf 1.5.87ubuntu1 190s I: Retrieving debianutils 5.21 191s I: Validating debianutils 5.21 191s I: Retrieving diffutils 1:3.10-2 191s I: Validating diffutils 1:3.10-2 191s I: Retrieving dpkg 1.22.11ubuntu4 192s I: Validating dpkg 1.22.11ubuntu4 192s I: Retrieving dpkg-dev 1.22.11ubuntu4 192s I: Validating dpkg-dev 1.22.11ubuntu4 192s I: Retrieving e2fsprogs 1.47.2-1ubuntu1 193s I: Validating e2fsprogs 1.47.2-1ubuntu1 193s I: Retrieving fakeroot 1.37-1 193s I: Validating fakeroot 1.37-1 193s I: Retrieving findutils 4.10.0-3 194s I: Validating findutils 4.10.0-3 194s I: Retrieving g++ 4:14.2.0-1ubuntu1 194s I: Validating g++ 4:14.2.0-1ubuntu1 194s I: Retrieving g++-14 14.2.0-17ubuntu1 194s I: Validating g++-14 14.2.0-17ubuntu1 194s I: Retrieving g++-14-s390x-linux-gnu 14.2.0-17ubuntu1 195s I: Validating g++-14-s390x-linux-gnu 14.2.0-17ubuntu1 195s I: Retrieving g++-s390x-linux-gnu 4:14.2.0-1ubuntu1 195s I: Validating g++-s390x-linux-gnu 4:14.2.0-1ubuntu1 195s I: Retrieving gcc 4:14.2.0-1ubuntu1 195s I: Validating gcc 4:14.2.0-1ubuntu1 195s I: Retrieving gcc-14 14.2.0-17ubuntu1 196s I: Validating gcc-14 14.2.0-17ubuntu1 196s I: Retrieving gcc-14-base 14.2.0-17ubuntu1 196s I: Validating gcc-14-base 14.2.0-17ubuntu1 196s I: Retrieving gcc-14-s390x-linux-gnu 14.2.0-17ubuntu1 197s I: Validating gcc-14-s390x-linux-gnu 14.2.0-17ubuntu1 197s I: Retrieving gcc-15-base 15-20250213-1ubuntu1 197s I: Validating gcc-15-base 15-20250213-1ubuntu1 197s I: Retrieving gcc-s390x-linux-gnu 4:14.2.0-1ubuntu1 198s I: Validating gcc-s390x-linux-gnu 4:14.2.0-1ubuntu1 198s I: Retrieving gpgv 2.4.4-2ubuntu22 198s I: Validating gpgv 2.4.4-2ubuntu22 198s I: Retrieving grep 3.11-4build1 198s I: Validating grep 3.11-4build1 198s I: Retrieving gzip 1.13-1ubuntu2 199s I: Validating gzip 1.13-1ubuntu2 199s I: Retrieving hostname 3.25 199s I: Validating hostname 3.25 199s I: Retrieving init-system-helpers 1.68 199s I: Validating init-system-helpers 1.68 199s I: Retrieving libacl1 2.3.2-2 199s I: Validating libacl1 2.3.2-2 199s I: Retrieving libapt-pkg7.0 2.9.30 200s I: Validating libapt-pkg7.0 2.9.30 200s I: Retrieving libasan8 15-20250213-1ubuntu1 201s I: Validating libasan8 15-20250213-1ubuntu1 201s I: Retrieving libassuan9 3.0.1-2 201s I: Validating libassuan9 3.0.1-2 201s I: Retrieving libatomic1 15-20250213-1ubuntu1 201s I: Validating libatomic1 15-20250213-1ubuntu1 201s I: Retrieving libattr1 1:2.5.2-2 201s I: Validating libattr1 1:2.5.2-2 201s I: Retrieving libaudit-common 1:4.0.2-2ubuntu1 201s I: Validating libaudit-common 1:4.0.2-2ubuntu1 201s I: Retrieving libaudit1 1:4.0.2-2ubuntu1 202s I: Validating libaudit1 1:4.0.2-2ubuntu1 202s I: Retrieving libbinutils 2.44-1ubuntu1 202s I: Validating libbinutils 2.44-1ubuntu1 202s I: Retrieving libblkid1 2.40.2-14ubuntu1 203s I: Validating libblkid1 2.40.2-14ubuntu1 203s I: Retrieving libbsd0 0.12.2-2 203s I: Validating libbsd0 0.12.2-2 203s I: Retrieving libbz2-1.0 1.0.8-6 203s I: Validating libbz2-1.0 1.0.8-6 203s I: Retrieving libc-bin 2.40-4ubuntu1 204s I: Validating libc-bin 2.40-4ubuntu1 204s I: Retrieving libc-dev-bin 2.40-4ubuntu1 204s I: Validating libc-dev-bin 2.40-4ubuntu1 204s I: Retrieving libc6 2.40-4ubuntu1 205s I: Validating libc6 2.40-4ubuntu1 205s I: Retrieving libc6-dev 2.40-4ubuntu1 205s I: Validating libc6-dev 2.40-4ubuntu1 205s I: Retrieving libcap-ng0 0.8.5-4 206s I: Validating libcap-ng0 0.8.5-4 206s I: Retrieving libcap2 1:2.66-5ubuntu3 206s I: Validating libcap2 1:2.66-5ubuntu3 206s I: Retrieving libcc1-0 15-20250213-1ubuntu1 206s I: Validating libcc1-0 15-20250213-1ubuntu1 206s I: Retrieving libcom-err2 1.47.2-1ubuntu1 206s I: Validating libcom-err2 1.47.2-1ubuntu1 206s I: Retrieving libcrypt-dev 1:4.4.38-1 207s I: Validating libcrypt-dev 1:4.4.38-1 207s I: Retrieving libcrypt1 1:4.4.38-1 207s I: Validating libcrypt1 1:4.4.38-1 207s I: Retrieving libctf-nobfd0 2.44-1ubuntu1 207s I: Validating libctf-nobfd0 2.44-1ubuntu1 207s I: Retrieving libctf0 2.44-1ubuntu1 208s I: Validating libctf0 2.44-1ubuntu1 208s I: Retrieving libdb5.3t64 5.3.28+dfsg2-9 208s I: Validating libdb5.3t64 5.3.28+dfsg2-9 208s I: Retrieving libdebconfclient0 0.274ubuntu1 209s I: Validating libdebconfclient0 0.274ubuntu1 209s I: Retrieving libdpkg-perl 1.22.11ubuntu4 209s I: Validating libdpkg-perl 1.22.11ubuntu4 209s I: Retrieving libext2fs2t64 1.47.2-1ubuntu1 210s I: Validating libext2fs2t64 1.47.2-1ubuntu1 210s I: Retrieving libfakeroot 1.37-1 210s I: Validating libfakeroot 1.37-1 210s I: Retrieving libgcc-14-dev 14.2.0-17ubuntu1 210s I: Validating libgcc-14-dev 14.2.0-17ubuntu1 210s I: Retrieving libgcc-s1 15-20250213-1ubuntu1 211s I: Validating libgcc-s1 15-20250213-1ubuntu1 211s I: Retrieving libgcrypt20 1.11.0-6ubuntu1 211s I: Validating libgcrypt20 1.11.0-6ubuntu1 211s I: Retrieving libgdbm-compat4t64 1.24-2 211s I: Validating libgdbm-compat4t64 1.24-2 211s I: Retrieving libgdbm6t64 1.24-2 212s I: Validating libgdbm6t64 1.24-2 212s I: Retrieving libgmp10 2:6.3.0+dfsg-2ubuntu7 212s I: Validating libgmp10 2:6.3.0+dfsg-2ubuntu7 212s I: Retrieving libgomp1 15-20250213-1ubuntu1 212s I: Validating libgomp1 15-20250213-1ubuntu1 212s I: Retrieving libgpg-error0 1.51-3 213s I: Validating libgpg-error0 1.51-3 213s I: Retrieving libisl23 0.27-1 213s I: Validating libisl23 0.27-1 213s I: Retrieving libitm1 15-20250213-1ubuntu1 213s I: Validating libitm1 15-20250213-1ubuntu1 214s I: Retrieving libjansson4 2.14-2build2 214s I: Validating libjansson4 2.14-2build2 214s I: Retrieving liblz4-1 1.10.0-3 214s I: Validating liblz4-1 1.10.0-3 214s I: Retrieving liblzma5 5.6.3-1 215s I: Validating liblzma5 5.6.3-1 215s I: Retrieving libmd0 1.1.0-2build2 215s I: Validating libmd0 1.1.0-2build2 215s I: Retrieving libmount1 2.40.2-14ubuntu1 215s I: Validating libmount1 2.40.2-14ubuntu1 215s I: Retrieving libmpc3 1.3.1-1build2 215s I: Validating libmpc3 1.3.1-1build2 215s I: Retrieving libmpfr6 4.2.1-1build2 216s I: Validating libmpfr6 4.2.1-1build2 216s I: Retrieving libncursesw6 6.5+20250125-2 216s I: Validating libncursesw6 6.5+20250125-2 216s I: Retrieving libnpth0t64 1.8-2 216s I: Validating libnpth0t64 1.8-2 216s I: Retrieving libpam-modules 1.5.3-7ubuntu4 217s I: Validating libpam-modules 1.5.3-7ubuntu4 217s I: Retrieving libpam-modules-bin 1.5.3-7ubuntu4 217s I: Validating libpam-modules-bin 1.5.3-7ubuntu4 217s I: Retrieving libpam-runtime 1.5.3-7ubuntu4 217s I: Validating libpam-runtime 1.5.3-7ubuntu4 217s I: Retrieving libpam0g 1.5.3-7ubuntu4 218s I: Validating libpam0g 1.5.3-7ubuntu4 218s I: Retrieving libpcre2-8-0 10.42-4ubuntu3 218s I: Validating libpcre2-8-0 10.42-4ubuntu3 218s I: Retrieving libperl5.40 5.40.0-8 219s I: Validating libperl5.40 5.40.0-8 219s I: Retrieving libproc2-0 2:4.0.4-4ubuntu5 219s I: Validating libproc2-0 2:4.0.4-4ubuntu5 219s I: Retrieving libseccomp2 2.5.5-1ubuntu5 220s I: Validating libseccomp2 2.5.5-1ubuntu5 220s I: Retrieving libselinux1 3.7-3ubuntu2 220s I: Validating libselinux1 3.7-3ubuntu2 220s I: Retrieving libsemanage-common 3.7-2.1 220s I: Validating libsemanage-common 3.7-2.1 220s I: Retrieving libsemanage2 3.7-2.1 220s I: Validating libsemanage2 3.7-2.1 220s I: Retrieving libsepol2 3.7-1 221s I: Validating libsepol2 3.7-1 221s I: Retrieving libsframe1 2.44-1ubuntu1 221s I: Validating libsframe1 2.44-1ubuntu1 221s I: Retrieving libsmartcols1 2.40.2-14ubuntu1 221s I: Validating libsmartcols1 2.40.2-14ubuntu1 221s I: Retrieving libss2 1.47.2-1ubuntu1 222s I: Validating libss2 1.47.2-1ubuntu1 222s I: Retrieving libssl3t64 3.4.0-1ubuntu2 222s I: Validating libssl3t64 3.4.0-1ubuntu2 222s I: Retrieving libstdc++-14-dev 14.2.0-17ubuntu1 223s I: Validating libstdc++-14-dev 14.2.0-17ubuntu1 223s I: Retrieving libstdc++6 15-20250213-1ubuntu1 224s I: Validating libstdc++6 15-20250213-1ubuntu1 224s I: Retrieving libsystemd0 257.2-3ubuntu1 224s I: Validating libsystemd0 257.2-3ubuntu1 224s I: Retrieving libtinfo6 6.5+20250125-2 225s I: Validating libtinfo6 6.5+20250125-2 225s I: Retrieving libubsan1 15-20250213-1ubuntu1 225s I: Validating libubsan1 15-20250213-1ubuntu1 225s I: Retrieving libudev1 257.2-3ubuntu1 226s I: Validating libudev1 257.2-3ubuntu1 226s I: Retrieving libuuid1 2.40.2-14ubuntu1 226s I: Validating libuuid1 2.40.2-14ubuntu1 226s I: Retrieving libxxhash0 0.8.3-2 226s I: Validating libxxhash0 0.8.3-2 226s I: Retrieving libzstd1 1.5.6+dfsg-2 227s I: Validating libzstd1 1.5.6+dfsg-2 227s I: Retrieving linux-libc-dev 6.12.0-15.15 227s I: Validating linux-libc-dev 6.12.0-15.15 227s I: Retrieving login 1:4.16.0-2+really2.40.2-14ubuntu1 228s I: Validating login 1:4.16.0-2+really2.40.2-14ubuntu1 228s I: Retrieving login.defs 1:4.16.0-7ubuntu1 228s I: Validating login.defs 1:4.16.0-7ubuntu1 228s I: Retrieving logsave 1.47.2-1ubuntu1 228s I: Validating logsave 1.47.2-1ubuntu1 228s I: Retrieving lto-disabled-list 55 228s I: Validating lto-disabled-list 55 228s I: Retrieving make 4.4.1-1 229s I: Validating make 4.4.1-1 229s I: Retrieving mawk 1.3.4.20250131-1 229s I: Validating mawk 1.3.4.20250131-1 229s I: Retrieving mount 2.40.2-14ubuntu1 229s I: Validating mount 2.40.2-14ubuntu1 229s I: Retrieving ncurses-base 6.5+20250125-2 230s I: Validating ncurses-base 6.5+20250125-2 230s I: Retrieving ncurses-bin 6.5+20250125-2 230s I: Validating ncurses-bin 6.5+20250125-2 230s I: Retrieving openssl-provider-legacy 3.4.0-1ubuntu2 230s I: Validating openssl-provider-legacy 3.4.0-1ubuntu2 230s I: Retrieving passwd 1:4.16.0-7ubuntu1 231s I: Validating passwd 1:4.16.0-7ubuntu1 231s I: Retrieving patch 2.7.6-7build3 231s I: Validating patch 2.7.6-7build3 231s I: Retrieving perl 5.40.0-8 232s I: Validating perl 5.40.0-8 232s I: Retrieving perl-base 5.40.0-8 233s I: Validating perl-base 5.40.0-8 233s I: Retrieving perl-modules-5.40 5.40.0-8 233s I: Validating perl-modules-5.40 5.40.0-8 233s I: Retrieving procps 2:4.0.4-4ubuntu5 234s I: Validating procps 2:4.0.4-4ubuntu5 234s I: Retrieving rpcsvc-proto 1.4.2-0ubuntu7 234s I: Validating rpcsvc-proto 1.4.2-0ubuntu7 234s I: Retrieving sed 4.9-2build1 235s I: Validating sed 4.9-2build1 235s I: Retrieving sensible-utils 0.0.24 235s I: Validating sensible-utils 0.0.24 235s I: Retrieving sysvinit-utils 3.14-1ubuntu1 235s I: Validating sysvinit-utils 3.14-1ubuntu1 235s I: Retrieving tar 1.35+dfsg-3.1 236s I: Validating tar 1.35+dfsg-3.1 236s I: Retrieving ubuntu-keyring 2023.11.28.1 236s I: Validating ubuntu-keyring 2023.11.28.1 236s I: Retrieving util-linux 2.40.2-14ubuntu1 236s I: Validating util-linux 2.40.2-14ubuntu1 236s I: Retrieving xz-utils 5.6.3-1 237s I: Validating xz-utils 5.6.3-1 237s I: Retrieving zlib1g 1:1.3.dfsg+really1.3.1-1ubuntu1 237s I: Validating zlib1g 1:1.3.dfsg+really1.3.1-1ubuntu1 237s I: Chosen extractor for .deb packages: dpkg-deb 237s I: Extracting base-files... 237s I: Extracting base-passwd... 237s I: Extracting bash... 237s I: Extracting bsdutils... 237s I: Extracting coreutils... 237s I: Extracting dash... 237s I: Extracting debconf... 237s I: Extracting debianutils... 237s I: Extracting diffutils... 237s I: Extracting dpkg... 237s I: Extracting e2fsprogs... 237s I: Extracting findutils... 237s I: Extracting gcc-14-base... 237s I: Extracting gcc-15-base... 237s I: Extracting grep... 237s I: Extracting gzip... 237s I: Extracting hostname... 237s I: Extracting init-system-helpers... 237s I: Extracting libacl1... 237s I: Extracting libattr1... 237s I: Extracting libaudit-common... 237s I: Extracting libaudit1... 237s I: Extracting libblkid1... 237s I: Extracting libbsd0... 237s I: Extracting libbz2-1.0... 237s I: Extracting libc-bin... 237s I: Extracting libc6... 237s I: Extracting libcap-ng0... 237s I: Extracting libcap2... 237s I: Extracting libcom-err2... 237s I: Extracting libcrypt1... 237s I: Extracting libdb5.3t64... 237s I: Extracting libdebconfclient0... 237s I: Extracting libext2fs2t64... 237s I: Extracting libgcc-s1... 237s I: Extracting libgmp10... 237s I: Extracting liblzma5... 237s I: Extracting libmd0... 237s I: Extracting libmount1... 237s I: Extracting libncursesw6... 237s I: Extracting libpam-modules... 237s I: Extracting libpam-modules-bin... 237s I: Extracting libpam-runtime... 237s I: Extracting libpam0g... 237s I: Extracting libpcre2-8-0... 237s I: Extracting libproc2-0... 237s I: Extracting libselinux1... 237s I: Extracting libsemanage-common... 237s I: Extracting libsemanage2... 237s I: Extracting libsepol2... 237s I: Extracting libsmartcols1... 237s I: Extracting libss2... 237s I: Extracting libssl3t64... 237s I: Extracting libsystemd0... 237s I: Extracting libtinfo6... 237s I: Extracting libudev1... 237s I: Extracting libuuid1... 237s I: Extracting libzstd1... 237s I: Extracting login... 237s I: Extracting login.defs... 237s I: Extracting logsave... 237s I: Extracting mawk... 237s I: Extracting mount... 238s I: Extracting ncurses-base... 238s I: Extracting ncurses-bin... 238s I: Extracting openssl-provider-legacy... 238s I: Extracting passwd... 238s I: Extracting perl-base... 238s I: Extracting procps... 238s I: Extracting sed... 238s I: Extracting sensible-utils... 238s I: Extracting sysvinit-utils... 238s I: Extracting tar... 238s I: Extracting util-linux... 238s I: Extracting zlib1g... 238s I: Installing core packages... 239s I: Unpacking required packages... 239s I: Unpacking base-files... 239s I: Unpacking base-passwd... 239s I: Unpacking bash... 239s I: Unpacking bsdutils... 239s I: Unpacking coreutils... 239s I: Unpacking dash... 239s I: Unpacking debconf... 240s I: Unpacking debianutils... 240s I: Unpacking diffutils... 240s I: Unpacking dpkg... 240s I: Unpacking e2fsprogs... 240s I: Unpacking findutils... 240s I: Unpacking gcc-14-base:s390x... 240s I: Unpacking gcc-15-base:s390x... 240s I: Unpacking grep... 240s I: Unpacking gzip... 240s I: Unpacking hostname... 240s I: Unpacking init-system-helpers... 240s I: Unpacking libacl1:s390x... 240s I: Unpacking libattr1:s390x... 240s I: Unpacking libaudit-common... 240s I: Unpacking libaudit1:s390x... 240s I: Unpacking libblkid1:s390x... 240s I: Unpacking libbsd0:s390x... 240s I: Unpacking libbz2-1.0:s390x... 240s I: Unpacking libc-bin... 240s I: Unpacking libc6:s390x... 240s I: Unpacking libcap-ng0:s390x... 241s I: Unpacking libcap2:s390x... 241s I: Unpacking libcom-err2:s390x... 241s I: Unpacking libcrypt1:s390x... 241s I: Unpacking libdb5.3t64:s390x... 241s I: Unpacking libdebconfclient0:s390x... 241s I: Unpacking libext2fs2t64:s390x... 241s I: Unpacking libgcc-s1:s390x... 241s I: Unpacking libgmp10:s390x... 241s I: Unpacking liblzma5:s390x... 241s I: Unpacking libmd0:s390x... 241s I: Unpacking libmount1:s390x... 241s I: Unpacking libncursesw6:s390x... 241s I: Unpacking libpam-modules:s390x... 241s I: Unpacking libpam-modules-bin... 241s I: Unpacking libpam-runtime... 241s I: Unpacking libpam0g:s390x... 241s I: Unpacking libpcre2-8-0:s390x... 241s I: Unpacking libproc2-0:s390x... 241s I: Unpacking libselinux1:s390x... 241s I: Unpacking libsemanage-common... 241s I: Unpacking libsemanage2:s390x... 241s I: Unpacking libsepol2:s390x... 241s I: Unpacking libsmartcols1:s390x... 241s I: Unpacking libss2:s390x... 241s I: Unpacking libssl3t64:s390x... 241s I: Unpacking libsystemd0:s390x... 241s I: Unpacking libtinfo6:s390x... 241s I: Unpacking libudev1:s390x... 241s I: Unpacking libuuid1:s390x... 241s I: Unpacking libzstd1:s390x... 241s I: Unpacking login... 241s I: Unpacking login.defs... 241s I: Unpacking logsave... 241s I: Unpacking mawk... 241s I: Unpacking mount... 241s I: Unpacking ncurses-base... 241s I: Unpacking ncurses-bin... 241s I: Unpacking openssl-provider-legacy... 242s I: Unpacking passwd... 242s I: Unpacking perl-base... 242s I: Unpacking procps... 242s I: Unpacking sed... 242s I: Unpacking sensible-utils... 242s I: Unpacking sysvinit-utils... 242s I: Unpacking tar... 242s I: Unpacking util-linux... 242s I: Unpacking zlib1g:s390x... 242s I: Configuring required packages... 242s I: Configuring gcc-14-base:s390x... 242s I: Configuring login.defs... 242s I: Configuring libaudit-common... 242s I: Configuring libsemanage-common... 242s I: Configuring debconf... 242s I: Configuring ncurses-base... 242s I: Configuring init-system-helpers... 242s I: Configuring sensible-utils... 242s I: Configuring gcc-15-base:s390x... 242s I: Configuring libgcc-s1:s390x... 242s I: Configuring libc6:s390x... 242s I: Configuring libdb5.3t64:s390x... 242s I: Configuring libmd0:s390x... 242s I: Configuring libattr1:s390x... 242s I: Configuring sysvinit-utils... 242s I: Configuring libext2fs2t64:s390x... 242s I: Configuring debianutils... 242s I: Configuring mawk... 242s I: Configuring libdebconfclient0:s390x... 242s I: Configuring libbz2-1.0:s390x... 242s I: Configuring libbsd0:s390x... 242s I: Configuring libblkid1:s390x... 242s I: Configuring dash... 243s I: Configuring libtinfo6:s390x... 243s I: Configuring libzstd1:s390x... 243s I: Configuring liblzma5:s390x... 243s I: Configuring libc-bin... 243s I: Configuring ncurses-bin... 243s I: Configuring libacl1:s390x... 243s I: Configuring libsmartcols1:s390x... 243s I: Configuring zlib1g:s390x... 243s I: Configuring libcrypt1:s390x... 243s I: Configuring libcom-err2:s390x... 243s I: Configuring diffutils... 243s I: Configuring libcap2:s390x... 243s I: Configuring perl-base... 243s I: Configuring openssl-provider-legacy... 243s I: Configuring hostname... 243s I: Configuring libcap-ng0:s390x... 243s I: Configuring libgmp10:s390x... 243s I: Configuring libaudit1:s390x... 243s I: Configuring gzip... 243s I: Configuring libuuid1:s390x... 243s I: Configuring libss2:s390x... 243s I: Configuring libsepol2:s390x... 243s I: Configuring libpcre2-8-0:s390x... 243s I: Configuring libncursesw6:s390x... 243s I: Configuring logsave... 243s I: Configuring libudev1:s390x... 243s I: Configuring base-files... 243s I: Configuring bash... 243s I: Configuring grep... 243s I: Configuring libssl3t64:s390x... 243s I: Configuring e2fsprogs... 243s I: Configuring libsystemd0:s390x... 243s I: Configuring libselinux1:s390x... 243s I: Configuring libpam0g:s390x... 243s I: Configuring sed... 243s I: Configuring libproc2-0:s390x... 243s I: Configuring findutils... 243s I: Configuring libmount1:s390x... 243s I: Configuring procps... 243s I: Configuring libsemanage2:s390x... 243s I: Configuring base-passwd... 243s I: Configuring bsdutils... 243s I: Configuring tar... 243s I: Configuring libpam-modules-bin... 243s I: Configuring coreutils... 243s I: Configuring dpkg... 243s I: Configuring mount... 243s I: Configuring libpam-modules:s390x... 243s I: Configuring passwd... 243s I: Configuring libpam-runtime... 243s I: Configuring login... 243s I: Configuring util-linux... 244s I: Configuring libc-bin... 244s I: Unpacking the base system... 244s I: Unpacking apt... 244s I: Unpacking binutils... 244s I: Unpacking binutils-common:s390x... 244s I: Unpacking binutils-s390x-linux-gnu... 244s I: Unpacking build-essential... 244s I: Unpacking bzip2... 244s I: Unpacking cpp... 244s I: Unpacking cpp-14... 244s I: Unpacking cpp-14-s390x-linux-gnu... 245s I: Unpacking cpp-s390x-linux-gnu... 245s I: Unpacking dpkg-dev... 245s I: Unpacking fakeroot... 245s I: Unpacking g++... 245s I: Unpacking g++-14... 245s I: Unpacking g++-14-s390x-linux-gnu... 245s I: Unpacking g++-s390x-linux-gnu... 245s I: Unpacking gcc... 245s I: Unpacking gcc-14... 245s I: Unpacking gcc-14-s390x-linux-gnu... 245s I: Unpacking gcc-s390x-linux-gnu... 245s I: Unpacking gpgv... 245s I: Unpacking libapt-pkg7.0:s390x... 245s I: Unpacking libasan8:s390x... 245s I: Unpacking libassuan9:s390x... 245s I: Unpacking libatomic1:s390x... 245s I: Unpacking libbinutils:s390x... 245s I: Unpacking libc-dev-bin... 245s I: Unpacking libc6-dev:s390x... 246s I: Unpacking libcc1-0:s390x... 246s I: Unpacking libcrypt-dev:s390x... 246s I: Unpacking libctf-nobfd0:s390x... 246s I: Unpacking libctf0:s390x... 246s I: Unpacking libdpkg-perl... 246s I: Unpacking libfakeroot:s390x... 246s I: Unpacking libgcc-14-dev:s390x... 246s I: Unpacking libgcrypt20:s390x... 246s I: Unpacking libgdbm-compat4t64:s390x... 246s I: Unpacking libgdbm6t64:s390x... 246s I: Unpacking libgomp1:s390x... 246s I: Unpacking libgpg-error0:s390x... 246s I: Unpacking libisl23:s390x... 246s I: Unpacking libitm1:s390x... 246s I: Unpacking libjansson4:s390x... 246s I: Unpacking liblz4-1:s390x... 246s I: Unpacking libmpc3:s390x... 246s I: Unpacking libmpfr6:s390x... 246s I: Unpacking libnpth0t64:s390x... 246s I: Unpacking libperl5.40:s390x... 246s I: Unpacking libseccomp2:s390x... 246s I: Unpacking libsframe1:s390x... 246s I: Unpacking libstdc++-14-dev:s390x... 246s I: Unpacking libstdc++6:s390x... 247s I: Unpacking libubsan1:s390x... 247s I: Unpacking libxxhash0:s390x... 247s I: Unpacking linux-libc-dev:s390x... 247s I: Unpacking lto-disabled-list... 247s I: Unpacking make... 247s I: Unpacking patch... 247s I: Unpacking perl... 247s I: Unpacking perl-modules-5.40... 247s I: Unpacking rpcsvc-proto... 247s I: Unpacking ubuntu-keyring... 247s I: Unpacking xz-utils... 247s I: Configuring the base system... 247s I: Configuring libnpth0t64:s390x... 247s I: Configuring lto-disabled-list... 247s I: Configuring libgdbm6t64:s390x... 247s I: Configuring libgpg-error0:s390x... 247s I: Configuring libgdbm-compat4t64:s390x... 247s I: Configuring binutils-common:s390x... 247s I: Configuring linux-libc-dev:s390x... 247s I: Configuring libctf-nobfd0:s390x... 247s I: Configuring libgcrypt20:s390x... 247s I: Configuring libgomp1:s390x... 247s I: Configuring bzip2... 247s I: Configuring ubuntu-keyring... 247s I: Configuring libseccomp2:s390x... 247s I: Configuring libsframe1:s390x... 247s I: Configuring libfakeroot:s390x... 247s I: Configuring libjansson4:s390x... 247s I: Configuring fakeroot... 247s I: Configuring rpcsvc-proto... 247s I: Configuring make... 247s I: Configuring libmpfr6:s390x... 247s I: Configuring xz-utils... 247s I: Configuring libmpc3:s390x... 247s I: Configuring libatomic1:s390x... 247s I: Configuring patch... 247s I: Configuring perl-modules-5.40... 247s I: Configuring libcrypt-dev:s390x... 247s I: Configuring libasan8:s390x... 247s I: Configuring libxxhash0:s390x... 247s I: Configuring libassuan9:s390x... 247s I: Configuring libbinutils:s390x... 247s I: Configuring libisl23:s390x... 247s I: Configuring libc-dev-bin... 247s I: Configuring libstdc++6:s390x... 247s I: Configuring libitm1:s390x... 247s I: Configuring libctf0:s390x... 247s I: Configuring binutils-s390x-linux-gnu... 247s I: Configuring liblz4-1:s390x... 247s I: Configuring binutils... 247s I: Configuring libperl5.40:s390x... 247s I: Configuring perl... 247s I: Configuring libdpkg-perl... 247s I: Configuring cpp-14-s390x-linux-gnu... 247s I: Configuring cpp-14... 247s I: Configuring libubsan1:s390x... 247s I: Configuring gpgv... 247s I: Configuring libc6-dev:s390x... 247s I: Configuring libapt-pkg7.0:s390x... 247s I: Configuring libgcc-14-dev:s390x... 247s I: Configuring libstdc++-14-dev:s390x... 247s I: Configuring libcc1-0:s390x... 247s I: Configuring apt... 248s I: Configuring cpp-s390x-linux-gnu... 248s I: Configuring dpkg-dev... 248s I: Configuring gcc-14-s390x-linux-gnu... 248s I: Configuring gcc-s390x-linux-gnu... 248s I: Configuring g++-14-s390x-linux-gnu... 248s I: Configuring cpp... 248s I: Configuring g++-s390x-linux-gnu... 248s I: Configuring gcc-14... 248s I: Configuring g++-14... 248s I: Configuring gcc... 248s I: Configuring g++... 248s I: Configuring build-essential... 248s I: Configuring libc-bin... 248s I: Base system installed successfully. 248s I: Configured /etc/hosts: 248s +------------------------------------------------------------------------ 248s |127.0.0.1 localhost 248s |::1 localhost ip6-localhost ip6-loopback 248s |ff02::1 ip6-allnodes 248s |ff02::2 ip6-allrouters 248s | 248s +------------------------------------------------------------------------ 248s I: Configured /usr/sbin/policy-rc.d: 248s +------------------------------------------------------------------------ 248s |#!/bin/sh 248s |echo "All runlevel operations denied by policy" >&2 248s |exit 101 248s +------------------------------------------------------------------------ 248s I: Configured APT /etc/apt/sources.list: 248s +------------------------------------------------------------------------ 248s |deb http://ports.ubuntu.com/ubuntu-ports plucky main universe 248s |deb-src http://ports.ubuntu.com/ubuntu-ports plucky main universe 248s +------------------------------------------------------------------------ 248s I: Please add any additional APT sources to /tmp/autopkgtest.dghVVw/autopkgtest_tmp/schroot-plucky/etc/apt/sources.list 248s I: schroot chroot configuration written to /etc/schroot/chroot.d/plucky-s390x-sbuild-VebT7s. 248s +------------------------------------------------------------------------ 248s |[plucky-s390x-sbuild] 248s |description=Debian plucky/s390x autobuilder 248s |groups=root,sbuild 248s |root-groups=root,sbuild 248s |profile=sbuild 248s |type=directory 248s |directory=/tmp/autopkgtest.dghVVw/autopkgtest_tmp/schroot-plucky 248s |union-type=overlay 248s +------------------------------------------------------------------------ 248s I: Please rename and modify this file as required. 248s mkdir /etc/sbuild/chroot 248s I: sudo chroot configuration linked as /etc/sbuild/chroot/plucky-s390x-sbuild. 248s I: Setting up the chroot... 248s I: Setting reference package list. 248s I: Updating chroot. 248s Hit:1 http://ports.ubuntu.com/ubuntu-ports plucky InRelease 248s Get:2 http://ports.ubuntu.com/ubuntu-ports plucky/universe Sources [21.0 MB] 249s Get:3 http://ports.ubuntu.com/ubuntu-ports plucky/main Sources [1384 kB] 251s Fetched 22.4 MB in 3s (6661 kB/s) 252s Reading package lists... 252s Reading package lists... 252s Building dependency tree... 253s Calculating upgrade... 253s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 253s I: Successfully set up plucky chroot. 253s I: Run "sbuild-adduser" to add new sbuild users. 253s INFO: Checking chroot 'plucky-s390x-sbuild' is known 253s chroot:plucky-s390x-sbuild 253s INFO: Displaying information about chroot 'plucky-s390x-sbuild' 253s ─── Chroot ─── 253s Name plucky-s390x-sbuild 253s Description Debian plucky/s390x autobuilder 253s Type directory 253s Message Verbosity normal 253s Users 253s Groups root sbuild 253s Root Users 253s Root Groups root sbuild 253s Aliases 253s Preserve Environment false 253s Default Shell 253s Environment Filter ^(BASH_ENV|CDPATH|ENV|HOSTALIASES|IFS|KRB5_CONFIG|KRBCONFDIR|KRBTKFILE|KRB_CONF|LD_.*|LOCALDOMAIN|NLSPATH|PATH_LOCALE|RES_OPTIONS|TERMINFO|TERMINFO_DIRS|TERMPATH)$ 253s Run Setup Scripts true 253s Configuration Profile sbuild 253s Script Configuration 253s Session Managed true 253s Session Cloned true 253s Session Purged false 253s Directory /tmp/autopkgtest.dghVVw/autopkgtest_tmp/schroot-plucky 253s Personality undefined 253s User Modifiable Keys 253s Root Modifiable Keys 253s User Data 253s setup.config sbuild/config 253s setup.copyfiles sbuild/copyfiles 253s setup.fstab sbuild/fstab 253s setup.nssdatabases sbuild/nssdatabases 253s Filesystem Union Type overlay 253s Filesystem Union Overlay Directory /var/lib/schroot/union/overlay 253s Filesystem Union Underlay Directory /var/lib/schroot/union/underlay 253s Source Users 253s Source Groups 253s Source Root Users 253s Source Root Groups 253s 253s ─── Source ─── 253s Name plucky-s390x-sbuild 253s Description Debian plucky/s390x autobuilder (source chroot) 253s Type directory 253s Message Verbosity normal 253s Users 253s Groups 253s Root Users 253s Root Groups 253s Aliases 253s Preserve Environment false 253s Default Shell 253s Environment Filter ^(BASH_ENV|CDPATH|ENV|HOSTALIASES|IFS|KRB5_CONFIG|KRBCONFDIR|KRBTKFILE|KRB_CONF|LD_.*|LOCALDOMAIN|NLSPATH|PATH_LOCALE|RES_OPTIONS|TERMINFO|TERMINFO_DIRS|TERMPATH)$ 253s Run Setup Scripts true 253s Configuration Profile sbuild 253s Script Configuration 253s Session Managed true 253s Session Cloned false 253s Session Purged false 253s Directory /tmp/autopkgtest.dghVVw/autopkgtest_tmp/schroot-plucky 253s Personality undefined 253s User Modifiable Keys 253s Root Modifiable Keys 253s User Data 253s setup.config sbuild/config 253s setup.copyfiles sbuild/copyfiles 253s setup.fstab sbuild/fstab 253s setup.nssdatabases sbuild/nssdatabases 253s INFO: Building package 'procenv' for release 'plucky' 253s The Debian buildds switched to the "unshare" backend and sbuild will default to it in the future. 253s To start using "unshare" add this to your `~/.config/sbuild/config.pl`: 253s $chroot_mode = "unshare"; 253s If you want to keep the old "schroot" mode even in the future, add the following to your `~/.config/sbuild/config.pl`: 253s $chroot_mode = "schroot"; 253s $schroot = "schroot"; 253s sbuild (Debian sbuild) 0.88.3ubuntu1 (07 February 2025) on autopkgtest.local 253s 253s +==============================================================================+ 253s | procenv (s390x) Thu, 20 Feb 2025 00:16:39 +0000 | 253s +==============================================================================+ 253s 253s Package: procenv 253s Distribution: plucky 253s Machine Architecture: s390x 253s Host Architecture: s390x 253s Build Architecture: s390x 253s Build Type: binary 253s 253s I: Setting up the chroot... 254s I: Creating chroot session... 254s I: Setting up log color... 254s I: Setting up apt archive... 254s 254s +------------------------------------------------------------------------------+ 254s | Update chroot Thu, 20 Feb 2025 00:16:40 +0000 | 254s +------------------------------------------------------------------------------+ 254s 254s Hit:1 http://ports.ubuntu.com/ubuntu-ports plucky InRelease 255s Reading package lists... 255s Reading package lists... 255s Building dependency tree... 256s Calculating upgrade... 256s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 256s 256s +------------------------------------------------------------------------------+ 256s | Fetch source files Thu, 20 Feb 2025 00:16:42 +0000 | 256s +------------------------------------------------------------------------------+ 256s 256s 256s Check APT 256s --------- 256s 256s Checking available source versions... 256s 256s Download source files with APT 256s ------------------------------ 256s 256s Reading package lists... 256s Need to get 319 kB of source archives. 256s Get:1 http://ports.ubuntu.com/ubuntu-ports plucky/universe procenv 0.51-0.2 (dsc) [2061 B] 256s Get:2 http://ports.ubuntu.com/ubuntu-ports plucky/universe procenv 0.51-0.2 (tar) [246 kB] 257s Get:3 http://ports.ubuntu.com/ubuntu-ports plucky/universe procenv 0.51-0.2 (diff) [71.2 kB] 257s Fetched 319 kB in 1s (624 kB/s) 257s Download complete and in download only mode 257s 257s +------------------------------------------------------------------------------+ 257s | Install package build dependencies Thu, 20 Feb 2025 00:16:43 +0000 | 257s +------------------------------------------------------------------------------+ 257s 257s 257s Setup apt archive 257s ----------------- 257s 257s Merged Build-Depends: debhelper (>= 9.0.0), dh-autoreconf, pkg-config, automake (>= 1.12), perl, expat, check, libcap-dev, libselinux1-dev, libapparmor-dev, build-essential 257s Filtered Build-Depends: debhelper (>= 9.0.0), dh-autoreconf, pkg-config, automake (>= 1.12), perl, expat, check, libcap-dev, libselinux1-dev, libapparmor-dev, build-essential 257s dpkg-deb: building package 'sbuild-build-depends-main-dummy' in '/build/reproducible-path/resolver-oC6JDK/apt_archive/sbuild-build-depends-main-dummy.deb'. 257s Ign:1 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ InRelease 257s Get:2 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Release [609 B] 257s Ign:3 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Release.gpg 257s Get:4 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Sources [924 B] 257s Get:5 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Packages [749 B] 257s Fetched 2282 B in 0s (0 B/s) 257s Reading package lists... 258s Reading package lists... 258s 258s Install main build dependencies (apt-based resolver) 258s ---------------------------------------------------- 258s 258s Installing build dependencies 258s Reading package lists... 258s Building dependency tree... 258s The following additional packages will be installed: 258s autoconf automake autopoint autotools-dev bsdextrautils check debhelper 258s debugedit dh-autoreconf dh-strip-nondeterminism dwz expat file gettext 258s gettext-base groff-base intltool-debian libapparmor-dev libapparmor1 258s libarchive-zip-perl libcap-dev libdebhelper-perl libdw1t64 libelf1t64 258s libexpat1 libfile-stripnondeterminism-perl libmagic-mgc libmagic1t64 258s libpcre2-16-0 libpcre2-32-0 libpcre2-dev libpcre2-posix3 libpipeline1 258s libpkgconf3 libselinux1-dev libsepol-dev libsubunit-dev libsubunit0 libtool 258s libuchardet0 libunistring5 libxml2 m4 man-db pkg-config pkgconf pkgconf-bin 258s po-debconf 258s Suggested packages: 258s autoconf-archive gnu-standards autoconf-doc dh-make gettext-doc 258s libasprintf-dev libgettextpo-dev groff manpages-dev libtool-doc gfortran 258s | fortran95-compiler gcj-jdk m4-doc apparmor less www-browser 258s libmail-box-perl 258s Recommended packages: 258s curl | wget | lynx libarchive-cpio-perl libltdl-dev libmail-sendmail-perl 258s The following NEW packages will be installed: 258s autoconf automake autopoint autotools-dev bsdextrautils check debhelper 258s debugedit dh-autoreconf dh-strip-nondeterminism dwz expat file gettext 258s gettext-base groff-base intltool-debian libapparmor-dev libapparmor1 258s libarchive-zip-perl libcap-dev libdebhelper-perl libdw1t64 libelf1t64 258s libexpat1 libfile-stripnondeterminism-perl libmagic-mgc libmagic1t64 258s libpcre2-16-0 libpcre2-32-0 libpcre2-dev libpcre2-posix3 libpipeline1 258s libpkgconf3 libselinux1-dev libsepol-dev libsubunit-dev libsubunit0 libtool 258s libuchardet0 libunistring5 libxml2 m4 man-db pkg-config pkgconf pkgconf-bin 258s po-debconf sbuild-build-depends-main-dummy 258s 0 upgraded, 49 newly installed, 0 to remove and 0 not upgraded. 258s Need to get 12.4 MB of archives. 258s After this operation, 46.5 MB of additional disk space will be used. 258s Get:1 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ sbuild-build-depends-main-dummy 0.invalid.0 [712 B] 258s Get:2 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libapparmor1 s390x 4.1.0~beta5-0ubuntu2 [54.1 kB] 259s Get:3 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libelf1t64 s390x 0.192-4 [70.3 kB] 259s Get:4 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libexpat1 s390x 2.6.4-1 [93.3 kB] 259s Get:5 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libunistring5 s390x 1.3-1 [619 kB] 259s Get:6 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxml2 s390x 2.12.7+dfsg+really2.9.14-0.2ubuntu3 [816 kB] 259s Get:7 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x bsdextrautils s390x 2.40.2-14ubuntu1 [91.2 kB] 259s Get:8 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmagic-mgc s390x 1:5.45-3build1 [305 kB] 259s Get:9 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmagic1t64 s390x 1:5.45-3build1 [93.2 kB] 259s Get:10 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x file s390x 1:5.45-3build1 [22.2 kB] 259s Get:11 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x gettext-base s390x 0.23.1-1 [42.3 kB] 259s Get:12 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libuchardet0 s390x 0.0.8-1build1 [76.7 kB] 259s Get:13 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x groff-base s390x 1.23.0-7 [1045 kB] 259s Get:14 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpipeline1 s390x 1.5.8-1 [32.5 kB] 259s Get:15 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x man-db s390x 2.13.0-1 [1337 kB] 259s Get:16 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 259s Get:17 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x autoconf all 2.72-3 [382 kB] 259s Get:18 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 259s Get:19 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x automake all 1:1.17-3 [572 kB] 259s Get:20 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x autopoint all 0.23.1-1 [619 kB] 259s Get:21 http://ports.ubuntu.com/ubuntu-ports plucky/universe s390x libsubunit0 s390x 1.4.2-3build1 [6560 B] 259s Get:22 http://ports.ubuntu.com/ubuntu-ports plucky/universe s390x libsubunit-dev s390x 1.4.2-3build1 [6330 B] 259s Get:23 http://ports.ubuntu.com/ubuntu-ports plucky/universe s390x check s390x 0.15.2-3 [106 kB] 259s Get:24 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 259s Get:25 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 259s Get:26 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x dh-autoreconf all 20 [16.1 kB] 259s Get:27 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 259s Get:28 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 259s Get:29 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 259s Get:30 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdw1t64 s390x 0.192-4 [299 kB] 259s Get:31 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 259s Get:32 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 259s Get:33 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 259s Get:34 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 259s Get:35 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 259s Get:36 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 259s Get:37 http://ports.ubuntu.com/ubuntu-ports plucky/universe s390x expat s390x 2.6.4-1 [18.5 kB] 259s Get:38 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libcap-dev s390x 1:2.66-5ubuntu3 [563 kB] 260s Get:39 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 260s Get:40 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpcre2-32-0 s390x 10.42-4ubuntu3 [221 kB] 260s Get:41 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpcre2-posix3 s390x 10.42-4ubuntu3 [6820 B] 260s Get:42 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpcre2-dev s390x 10.42-4ubuntu3 [815 kB] 260s Get:43 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 260s Get:44 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsepol-dev s390x 3.7-1 [412 kB] 260s Get:45 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libselinux1-dev s390x 3.7-3ubuntu2 [169 kB] 260s Get:46 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 260s Get:47 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 260s Get:48 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x pkg-config s390x 1.8.1-4 [7362 B] 260s Get:49 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libapparmor-dev s390x 4.1.0~beta5-0ubuntu2 [71.7 kB] 260s Preconfiguring packages ... 260s Fetched 12.4 MB in 1s (8984 kB/s) 260s Selecting previously unselected package libapparmor1:s390x. 260s (Reading database ... 10122 files and directories currently installed.) 260s Preparing to unpack .../00-libapparmor1_4.1.0~beta5-0ubuntu2_s390x.deb ... 260s Unpacking libapparmor1:s390x (4.1.0~beta5-0ubuntu2) ... 260s Selecting previously unselected package libelf1t64:s390x. 260s Preparing to unpack .../01-libelf1t64_0.192-4_s390x.deb ... 260s Unpacking libelf1t64:s390x (0.192-4) ... 260s Selecting previously unselected package libexpat1:s390x. 260s Preparing to unpack .../02-libexpat1_2.6.4-1_s390x.deb ... 260s Unpacking libexpat1:s390x (2.6.4-1) ... 260s Selecting previously unselected package libunistring5:s390x. 260s Preparing to unpack .../03-libunistring5_1.3-1_s390x.deb ... 260s Unpacking libunistring5:s390x (1.3-1) ... 260s Selecting previously unselected package libxml2:s390x. 260s Preparing to unpack .../04-libxml2_2.12.7+dfsg+really2.9.14-0.2ubuntu3_s390x.deb ... 260s Unpacking libxml2:s390x (2.12.7+dfsg+really2.9.14-0.2ubuntu3) ... 260s Selecting previously unselected package bsdextrautils. 260s Preparing to unpack .../05-bsdextrautils_2.40.2-14ubuntu1_s390x.deb ... 260s Unpacking bsdextrautils (2.40.2-14ubuntu1) ... 260s Selecting previously unselected package libmagic-mgc. 260s Preparing to unpack .../06-libmagic-mgc_1%3a5.45-3build1_s390x.deb ... 260s Unpacking libmagic-mgc (1:5.45-3build1) ... 260s Selecting previously unselected package libmagic1t64:s390x. 260s Preparing to unpack .../07-libmagic1t64_1%3a5.45-3build1_s390x.deb ... 260s Unpacking libmagic1t64:s390x (1:5.45-3build1) ... 260s Selecting previously unselected package file. 260s Preparing to unpack .../08-file_1%3a5.45-3build1_s390x.deb ... 260s Unpacking file (1:5.45-3build1) ... 260s Selecting previously unselected package gettext-base. 260s Preparing to unpack .../09-gettext-base_0.23.1-1_s390x.deb ... 260s Unpacking gettext-base (0.23.1-1) ... 260s Selecting previously unselected package libuchardet0:s390x. 260s Preparing to unpack .../10-libuchardet0_0.0.8-1build1_s390x.deb ... 260s Unpacking libuchardet0:s390x (0.0.8-1build1) ... 260s Selecting previously unselected package groff-base. 260s Preparing to unpack .../11-groff-base_1.23.0-7_s390x.deb ... 260s Unpacking groff-base (1.23.0-7) ... 261s Selecting previously unselected package libpipeline1:s390x. 261s Preparing to unpack .../12-libpipeline1_1.5.8-1_s390x.deb ... 261s Unpacking libpipeline1:s390x (1.5.8-1) ... 261s Selecting previously unselected package man-db. 261s Preparing to unpack .../13-man-db_2.13.0-1_s390x.deb ... 261s Unpacking man-db (2.13.0-1) ... 261s Selecting previously unselected package m4. 261s Preparing to unpack .../14-m4_1.4.19-5_s390x.deb ... 261s Unpacking m4 (1.4.19-5) ... 261s Selecting previously unselected package autoconf. 261s Preparing to unpack .../15-autoconf_2.72-3_all.deb ... 261s Unpacking autoconf (2.72-3) ... 261s Selecting previously unselected package autotools-dev. 261s Preparing to unpack .../16-autotools-dev_20220109.1_all.deb ... 261s Unpacking autotools-dev (20220109.1) ... 261s Selecting previously unselected package automake. 261s Preparing to unpack .../17-automake_1%3a1.17-3_all.deb ... 261s Unpacking automake (1:1.17-3) ... 261s Selecting previously unselected package autopoint. 261s Preparing to unpack .../18-autopoint_0.23.1-1_all.deb ... 261s Unpacking autopoint (0.23.1-1) ... 261s Selecting previously unselected package libsubunit0:s390x. 261s Preparing to unpack .../19-libsubunit0_1.4.2-3build1_s390x.deb ... 261s Unpacking libsubunit0:s390x (1.4.2-3build1) ... 261s Selecting previously unselected package libsubunit-dev:s390x. 261s Preparing to unpack .../20-libsubunit-dev_1.4.2-3build1_s390x.deb ... 261s Unpacking libsubunit-dev:s390x (1.4.2-3build1) ... 261s Selecting previously unselected package check:s390x. 261s Preparing to unpack .../21-check_0.15.2-3_s390x.deb ... 261s Unpacking check:s390x (0.15.2-3) ... 261s Selecting previously unselected package libdebhelper-perl. 261s Preparing to unpack .../22-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 261s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 261s Selecting previously unselected package libtool. 261s Preparing to unpack .../23-libtool_2.5.4-3build1_all.deb ... 261s Unpacking libtool (2.5.4-3build1) ... 261s Selecting previously unselected package dh-autoreconf. 261s Preparing to unpack .../24-dh-autoreconf_20_all.deb ... 261s Unpacking dh-autoreconf (20) ... 262s Selecting previously unselected package libarchive-zip-perl. 262s Preparing to unpack .../25-libarchive-zip-perl_1.68-1_all.deb ... 262s Unpacking libarchive-zip-perl (1.68-1) ... 262s Selecting previously unselected package libfile-stripnondeterminism-perl. 262s Preparing to unpack .../26-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 262s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 262s Selecting previously unselected package dh-strip-nondeterminism. 262s Preparing to unpack .../27-dh-strip-nondeterminism_1.14.1-2_all.deb ... 262s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 262s Selecting previously unselected package libdw1t64:s390x. 262s Preparing to unpack .../28-libdw1t64_0.192-4_s390x.deb ... 262s Unpacking libdw1t64:s390x (0.192-4) ... 262s Selecting previously unselected package debugedit. 262s Preparing to unpack .../29-debugedit_1%3a5.1-2_s390x.deb ... 262s Unpacking debugedit (1:5.1-2) ... 262s Selecting previously unselected package dwz. 262s Preparing to unpack .../30-dwz_0.15-1build6_s390x.deb ... 262s Unpacking dwz (0.15-1build6) ... 262s Selecting previously unselected package gettext. 262s Preparing to unpack .../31-gettext_0.23.1-1_s390x.deb ... 262s Unpacking gettext (0.23.1-1) ... 262s Selecting previously unselected package intltool-debian. 262s Preparing to unpack .../32-intltool-debian_0.35.0+20060710.6_all.deb ... 262s Unpacking intltool-debian (0.35.0+20060710.6) ... 262s Selecting previously unselected package po-debconf. 262s Preparing to unpack .../33-po-debconf_1.0.21+nmu1_all.deb ... 262s Unpacking po-debconf (1.0.21+nmu1) ... 262s Selecting previously unselected package debhelper. 262s Preparing to unpack .../34-debhelper_13.24.1ubuntu2_all.deb ... 262s Unpacking debhelper (13.24.1ubuntu2) ... 263s Selecting previously unselected package expat. 263s Preparing to unpack .../35-expat_2.6.4-1_s390x.deb ... 263s Unpacking expat (2.6.4-1) ... 263s Selecting previously unselected package libcap-dev:s390x. 263s Preparing to unpack .../36-libcap-dev_1%3a2.66-5ubuntu3_s390x.deb ... 263s Unpacking libcap-dev:s390x (1:2.66-5ubuntu3) ... 263s Selecting previously unselected package libpcre2-16-0:s390x. 263s Preparing to unpack .../37-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 263s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 263s Selecting previously unselected package libpcre2-32-0:s390x. 263s Preparing to unpack .../38-libpcre2-32-0_10.42-4ubuntu3_s390x.deb ... 263s Unpacking libpcre2-32-0:s390x (10.42-4ubuntu3) ... 263s Selecting previously unselected package libpcre2-posix3:s390x. 263s Preparing to unpack .../39-libpcre2-posix3_10.42-4ubuntu3_s390x.deb ... 263s Unpacking libpcre2-posix3:s390x (10.42-4ubuntu3) ... 263s Selecting previously unselected package libpcre2-dev:s390x. 263s Preparing to unpack .../40-libpcre2-dev_10.42-4ubuntu3_s390x.deb ... 263s Unpacking libpcre2-dev:s390x (10.42-4ubuntu3) ... 263s Selecting previously unselected package libpkgconf3:s390x. 263s Preparing to unpack .../41-libpkgconf3_1.8.1-4_s390x.deb ... 263s Unpacking libpkgconf3:s390x (1.8.1-4) ... 263s Selecting previously unselected package libsepol-dev:s390x. 263s Preparing to unpack .../42-libsepol-dev_3.7-1_s390x.deb ... 263s Unpacking libsepol-dev:s390x (3.7-1) ... 263s Selecting previously unselected package libselinux1-dev:s390x. 263s Preparing to unpack .../43-libselinux1-dev_3.7-3ubuntu2_s390x.deb ... 263s Unpacking libselinux1-dev:s390x (3.7-3ubuntu2) ... 263s Selecting previously unselected package pkgconf-bin. 263s Preparing to unpack .../44-pkgconf-bin_1.8.1-4_s390x.deb ... 263s Unpacking pkgconf-bin (1.8.1-4) ... 263s Selecting previously unselected package pkgconf:s390x. 263s Preparing to unpack .../45-pkgconf_1.8.1-4_s390x.deb ... 263s Unpacking pkgconf:s390x (1.8.1-4) ... 263s Selecting previously unselected package pkg-config:s390x. 263s Preparing to unpack .../46-pkg-config_1.8.1-4_s390x.deb ... 263s Unpacking pkg-config:s390x (1.8.1-4) ... 263s Selecting previously unselected package libapparmor-dev:s390x. 263s Preparing to unpack .../47-libapparmor-dev_4.1.0~beta5-0ubuntu2_s390x.deb ... 263s Unpacking libapparmor-dev:s390x (4.1.0~beta5-0ubuntu2) ... 263s Selecting previously unselected package sbuild-build-depends-main-dummy. 263s Preparing to unpack .../48-sbuild-build-depends-main-dummy_0.invalid.0_s390x.deb ... 263s Unpacking sbuild-build-depends-main-dummy (0.invalid.0) ... 263s Setting up libexpat1:s390x (2.6.4-1) ... 263s Setting up libpipeline1:s390x (1.5.8-1) ... 263s Setting up libapparmor1:s390x (4.1.0~beta5-0ubuntu2) ... 263s Setting up bsdextrautils (2.40.2-14ubuntu1) ... 263s Setting up libmagic-mgc (1:5.45-3build1) ... 263s Setting up libarchive-zip-perl (1.68-1) ... 263s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 263s Setting up libmagic1t64:s390x (1:5.45-3build1) ... 263s Setting up gettext-base (0.23.1-1) ... 263s Setting up m4 (1.4.19-5) ... 263s Setting up file (1:5.45-3build1) ... 263s Setting up libsubunit0:s390x (1.4.2-3build1) ... 263s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 263s Setting up libelf1t64:s390x (0.192-4) ... 263s Setting up libdw1t64:s390x (0.192-4) ... 263s Setting up autotools-dev (20220109.1) ... 263s Setting up libpcre2-32-0:s390x (10.42-4ubuntu3) ... 263s Setting up libpkgconf3:s390x (1.8.1-4) ... 263s Setting up expat (2.6.4-1) ... 263s Setting up libunistring5:s390x (1.3-1) ... 263s Setting up autopoint (0.23.1-1) ... 263s Setting up libsepol-dev:s390x (3.7-1) ... 263s Setting up pkgconf-bin (1.8.1-4) ... 263s Setting up autoconf (2.72-3) ... 263s Setting up libpcre2-posix3:s390x (10.42-4ubuntu3) ... 263s Setting up dwz (0.15-1build6) ... 263s Setting up libuchardet0:s390x (0.0.8-1build1) ... 263s Setting up debugedit (1:5.1-2) ... 263s Setting up libapparmor-dev:s390x (4.1.0~beta5-0ubuntu2) ... 263s Setting up libcap-dev:s390x (1:2.66-5ubuntu3) ... 263s Setting up libxml2:s390x (2.12.7+dfsg+really2.9.14-0.2ubuntu3) ... 263s Setting up automake (1:1.17-3) ... 263s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 263s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 263s Setting up gettext (0.23.1-1) ... 263s Setting up libpcre2-dev:s390x (10.42-4ubuntu3) ... 263s Setting up libtool (2.5.4-3build1) ... 263s Setting up libselinux1-dev:s390x (3.7-3ubuntu2) ... 263s Setting up libsubunit-dev:s390x (1.4.2-3build1) ... 263s Setting up pkgconf:s390x (1.8.1-4) ... 263s Setting up intltool-debian (0.35.0+20060710.6) ... 263s Setting up dh-autoreconf (20) ... 263s Setting up check:s390x (0.15.2-3) ... 263s Setting up pkg-config:s390x (1.8.1-4) ... 263s Setting up dh-strip-nondeterminism (1.14.1-2) ... 263s Setting up groff-base (1.23.0-7) ... 263s Setting up po-debconf (1.0.21+nmu1) ... 263s Setting up man-db (2.13.0-1) ... 263s Not building database; man-db/auto-update is not 'true'. 263s Setting up debhelper (13.24.1ubuntu2) ... 263s Setting up sbuild-build-depends-main-dummy (0.invalid.0) ... 263s Processing triggers for libc-bin (2.40-4ubuntu1) ... 264s 264s +------------------------------------------------------------------------------+ 264s | Check architectures Thu, 20 Feb 2025 00:16:50 +0000 | 264s +------------------------------------------------------------------------------+ 264s 264s Arch check ok (s390x included in any) 264s 264s +------------------------------------------------------------------------------+ 264s | Build environment Thu, 20 Feb 2025 00:16:50 +0000 | 264s +------------------------------------------------------------------------------+ 264s 264s Kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 s390x (s390x) 264s Toolchain package versions: binutils_2.44-1ubuntu1 dpkg-dev_1.22.11ubuntu4 g++-14_14.2.0-17ubuntu1 gcc-14_14.2.0-17ubuntu1 libc6-dev_2.40-4ubuntu1 libstdc++-14-dev_14.2.0-17ubuntu1 libstdc++6_15-20250213-1ubuntu1 linux-libc-dev_6.12.0-15.15 264s Package versions: apt_2.9.30 autoconf_2.72-3 automake_1:1.17-3 autopoint_0.23.1-1 autotools-dev_20220109.1 base-files_13.5ubuntu3 base-passwd_3.6.6 bash_5.2.37-1ubuntu1 binutils_2.44-1ubuntu1 binutils-common_2.44-1ubuntu1 binutils-s390x-linux-gnu_2.44-1ubuntu1 bsdextrautils_2.40.2-14ubuntu1 bsdutils_1:2.40.2-14ubuntu1 build-essential_12.10ubuntu1 bzip2_1.0.8-6 check_0.15.2-3 coreutils_9.5-1ubuntu1 cpp_4:14.2.0-1ubuntu1 cpp-14_14.2.0-17ubuntu1 cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1 cpp-s390x-linux-gnu_4:14.2.0-1ubuntu1 dash_0.5.12-12ubuntu1 debconf_1.5.87ubuntu1 debhelper_13.24.1ubuntu2 debianutils_5.21 debugedit_1:5.1-2 dh-autoreconf_20 dh-strip-nondeterminism_1.14.1-2 diffutils_1:3.10-2 dpkg_1.22.11ubuntu4 dpkg-dev_1.22.11ubuntu4 dwz_0.15-1build6 e2fsprogs_1.47.2-1ubuntu1 expat_2.6.4-1 fakeroot_1.37-1 file_1:5.45-3build1 findutils_4.10.0-3 g++_4:14.2.0-1ubuntu1 g++-14_14.2.0-17ubuntu1 g++-14-s390x-linux-gnu_14.2.0-17ubuntu1 g++-s390x-linux-gnu_4:14.2.0-1ubuntu1 gcc_4:14.2.0-1ubuntu1 gcc-14_14.2.0-17ubuntu1 gcc-14-base_14.2.0-17ubuntu1 gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1 gcc-15-base_15-20250213-1ubuntu1 gcc-s390x-linux-gnu_4:14.2.0-1ubuntu1 gettext_0.23.1-1 gettext-base_0.23.1-1 gpgv_2.4.4-2ubuntu22 grep_3.11-4build1 groff-base_1.23.0-7 gzip_1.13-1ubuntu2 hostname_3.25 init-system-helpers_1.68 intltool-debian_0.35.0+20060710.6 libacl1_2.3.2-2 libapparmor-dev_4.1.0~beta5-0ubuntu2 libapparmor1_4.1.0~beta5-0ubuntu2 libapt-pkg7.0_2.9.30 libarchive-zip-perl_1.68-1 libasan8_15-20250213-1ubuntu1 libassuan9_3.0.1-2 libatomic1_15-20250213-1ubuntu1 libattr1_1:2.5.2-2 libaudit-common_1:4.0.2-2ubuntu1 libaudit1_1:4.0.2-2ubuntu1 libbinutils_2.44-1ubuntu1 libblkid1_2.40.2-14ubuntu1 libbsd0_0.12.2-2 libbz2-1.0_1.0.8-6 libc-bin_2.40-4ubuntu1 libc-dev-bin_2.40-4ubuntu1 libc6_2.40-4ubuntu1 libc6-dev_2.40-4ubuntu1 libcap-dev_1:2.66-5ubuntu3 libcap-ng0_0.8.5-4 libcap2_1:2.66-5ubuntu3 libcc1-0_15-20250213-1ubuntu1 libcom-err2_1.47.2-1ubuntu1 libcrypt-dev_1:4.4.38-1 libcrypt1_1:4.4.38-1 libctf-nobfd0_2.44-1ubuntu1 libctf0_2.44-1ubuntu1 libdb5.3t64_5.3.28+dfsg2-9 libdebconfclient0_0.274ubuntu1 libdebhelper-perl_13.24.1ubuntu2 libdpkg-perl_1.22.11ubuntu4 libdw1t64_0.192-4 libelf1t64_0.192-4 libexpat1_2.6.4-1 libext2fs2t64_1.47.2-1ubuntu1 libfakeroot_1.37-1 libfile-stripnondeterminism-perl_1.14.1-2 libgcc-14-dev_14.2.0-17ubuntu1 libgcc-s1_15-20250213-1ubuntu1 libgcrypt20_1.11.0-6ubuntu1 libgdbm-compat4t64_1.24-2 libgdbm6t64_1.24-2 libgmp10_2:6.3.0+dfsg-2ubuntu7 libgomp1_15-20250213-1ubuntu1 libgpg-error0_1.51-3 libisl23_0.27-1 libitm1_15-20250213-1ubuntu1 libjansson4_2.14-2build2 liblz4-1_1.10.0-3 liblzma5_5.6.3-1 libmagic-mgc_1:5.45-3build1 libmagic1t64_1:5.45-3build1 libmd0_1.1.0-2build2 libmount1_2.40.2-14ubuntu1 libmpc3_1.3.1-1build2 libmpfr6_4.2.1-1build2 libncursesw6_6.5+20250125-2 libnpth0t64_1.8-2 libpam-modules_1.5.3-7ubuntu4 libpam-modules-bin_1.5.3-7ubuntu4 libpam-runtime_1.5.3-7ubuntu4 libpam0g_1.5.3-7ubuntu4 libpcre2-16-0_10.42-4ubuntu3 libpcre2-32-0_10.42-4ubuntu3 libpcre2-8-0_10.42-4ubuntu3 libpcre2-dev_10.42-4ubuntu3 libpcre2-posix3_10.42-4ubuntu3 libperl5.40_5.40.0-8 libpipeline1_1.5.8-1 libpkgconf3_1.8.1-4 libproc2-0_2:4.0.4-4ubuntu5 libseccomp2_2.5.5-1ubuntu5 libselinux1_3.7-3ubuntu2 libselinux1-dev_3.7-3ubuntu2 libsemanage-common_3.7-2.1 libsemanage2_3.7-2.1 libsepol-dev_3.7-1 libsepol2_3.7-1 libsframe1_2.44-1ubuntu1 libsmartcols1_2.40.2-14ubuntu1 libss2_1.47.2-1ubuntu1 libssl3t64_3.4.0-1ubuntu2 libstdc++-14-dev_14.2.0-17ubuntu1 libstdc++6_15-20250213-1ubuntu1 libsubunit-dev_1.4.2-3build1 libsubunit0_1.4.2-3build1 libsystemd0_257.2-3ubuntu1 libtinfo6_6.5+20250125-2 libtool_2.5.4-3build1 libubsan1_15-20250213-1ubuntu1 libuchardet0_0.0.8-1build1 libudev1_257.2-3ubuntu1 libunistring5_1.3-1 libuuid1_2.40.2-14ubuntu1 libxml2_2.12.7+dfsg+really2.9.14-0.2ubuntu3 libxxhash0_0.8.3-2 libzstd1_1.5.6+dfsg-2 linux-libc-dev_6.12.0-15.15 login_1:4.16.0-2+really2.40.2-14ubuntu1 login.defs_1:4.16.0-7ubuntu1 logsave_1.47.2-1ubuntu1 lto-disabled-list_55 m4_1.4.19-5 make_4.4.1-1 man-db_2.13.0-1 mawk_1.3.4.20250131-1 mount_2.40.2-14ubuntu1 ncurses-base_6.5+20250125-2 ncurses-bin_6.5+20250125-2 openssl-provider-legacy_3.4.0-1ubuntu2 passwd_1:4.16.0-7ubuntu1 patch_2.7.6-7build3 perl_5.40.0-8 perl-base_5.40.0-8 perl-modules-5.40_5.40.0-8 pkg-config_1.8.1-4 pkgconf_1.8.1-4 pkgconf-bin_1.8.1-4 po-debconf_1.0.21+nmu1 procps_2:4.0.4-4ubuntu5 rpcsvc-proto_1.4.2-0ubuntu7 sbuild-build-depends-main-dummy_0.invalid.0 sed_4.9-2build1 sensible-utils_0.0.24 sysvinit-utils_3.14-1ubuntu1 tar_1.35+dfsg-3.1 ubuntu-keyring_2023.11.28.1 util-linux_2.40.2-14ubuntu1 xz-utils_5.6.3-1 zlib1g_1:1.3.dfsg+really1.3.1-1ubuntu1 264s 264s +------------------------------------------------------------------------------+ 264s | Build Thu, 20 Feb 2025 00:16:50 +0000 | 264s +------------------------------------------------------------------------------+ 264s 264s 264s Unpack source 264s ------------- 264s 264s -----BEGIN PGP SIGNED MESSAGE----- 264s Hash: SHA256 264s 264s Format: 3.0 (quilt) 264s Source: procenv 264s Binary: procenv 264s Architecture: any 264s Version: 0.51-0.2 264s Maintainer: James Hunt 264s Homepage: https://github.com/jamesodhunt/procenv 264s Standards-Version: 3.9.5 264s Testsuite: autopkgtest 264s Build-Depends: debhelper (>= 9.0.0), dh-autoreconf, pkg-config, libkvm-dev [kfreebsd-any], automake (>= 1.12), perl, expat, check, libnuma-dev [linux-i386 linux-amd64 linux-ia64 linux-mips linux-mipsel linux-mips64 linux-mips64el linux-powerpc linux-ppc64 linux-ppc64el linux-x32], libcap-dev [linux-any], libselinux1-dev [linux-any], libapparmor-dev [linux-any] 264s Package-List: 264s procenv deb utils optional arch=any 264s Checksums-Sha1: 264s 7708454ba7c1f94c55147a3177cf31a13ffb15eb 245663 procenv_0.51.orig.tar.gz 264s a9e084069ba0a45bd4c3be2999f2e7ec8e84e538 71232 procenv_0.51-0.2.debian.tar.xz 264s Checksums-Sha256: 264s b831c14729e06a285cc13eba095817ce3b6d0ddf484b1264951b03ee4fe25bc9 245663 procenv_0.51.orig.tar.gz 264s edc9fd09256b7c51561f7572fad391a191b99c741e5b1be72eccdc0c8b0f160d 71232 procenv_0.51-0.2.debian.tar.xz 264s Files: 264s a1541f086f0b98e2ee0f7810b0140b7f 245663 procenv_0.51.orig.tar.gz 264s 66ff3b2bb9dafafe2329b1241edc88d2 71232 procenv_0.51-0.2.debian.tar.xz 264s 264s -----BEGIN PGP SIGNATURE----- 264s 264s iQIzBAEBCAAdFiEEkpeKbhleSSGCX3/w808JdE6fXdkFAl/TeZwACgkQ808JdE6f 264s Xdkm0hAAlvfqU25j0bcZJS4fN+Pm9CLLO0ZxuE8+0jx0nYGjGibBB9shSw3jdUFp 264s aZ8bUOWt1W73vdOfXi6K5eEwx+Pbu93oNs3APokOsmh2C3NIph4MFFN00gDlt5XN 264s Wj6xPGCDOogw/WrMw78XVTXizAOBhxF1WitIuo2H1btCcPSwMGdyOonQY6+5YN+u 264s oHol+h+KkzwitK4Jl7OkOa6rIJHJIYnB9Qv2AGOUdC0n540cIiQKxZ6buUfB86X1 264s +vMCaTSoXRupKIfuCM1iKmuYyEyZX85t1JH2kVUHqCPJNmZnbTZO1nanUf4DJm5/ 264s x6B4aacJonBBTNWoxw88CAP27mD/wz50GpePAhtgYX1dALR8aCnX+MATfjNeF71D 264s kpUCeB+2jWECZeivMIEupBGhpaod+ege5KB3W9QqrSLG5FBc5IE3pnR94a3nwPkl 264s qDzmzH9QGTMxYDTmYtahUK5iCeHIV9T9Q3+SOQE/j92MVsPoWtRU27j+L3AxQIu1 264s Mjq35byTUrc8DIbVmweukQ+uA59y2S0gGVr+1uNym62nBPBxhOLUBT11UVLX+rQh 264s 7YaCnIEb1Alvu2XxlvI7G+ppHpxg/EltToK3wg5GtyIuUCNSYxTGS5xPrcYdM458 264s uWKJbxbUyVSHrPvYWfAfcu3g43gCQ9878+Ap6i6w99D+uPeVE1o= 264s =nOYU 264s -----END PGP SIGNATURE----- 264s 264s gpgv: Signature made Fri Dec 11 13:52:28 2020 UTC 264s gpgv: using RSA key 92978A6E195E4921825F7FF0F34F09744E9F5DD9 264s gpgv: Can't check signature: No public key 264s dpkg-source: warning: cannot verify inline signature for ./procenv_0.51-0.2.dsc: no acceptable signature found 264s dpkg-source: info: extracting procenv in /build/reproducible-path/procenv-0.51 264s dpkg-source: info: unpacking procenv_0.51.orig.tar.gz 264s dpkg-source: info: unpacking procenv_0.51-0.2.debian.tar.xz 264s dpkg-source: info: using patch list from debian/patches/series 264s dpkg-source: info: applying gcc-10-sprintf.patch 264s dpkg-buildtree: error: unknown option 'is-rootless' 264s 264s Use --help for program usage information. 264s 264s Install fakeroot 264s ---------------- 264s 264s 264s Setup apt archive 264s ----------------- 264s 264s Merged Build-Depends: fakeroot 264s Filtered Build-Depends: fakeroot 264s dpkg-deb: building package 'sbuild-build-depends-fakeroot-dummy' in '/build/reproducible-path/resolver-oC6JDK/apt_archive/sbuild-build-depends-fakeroot-dummy.deb'. 264s Ign:1 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ InRelease 264s Get:2 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Release [615 B] 264s Ign:3 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Release.gpg 264s Get:4 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Sources [1512 B] 264s Get:5 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Packages [1364 B] 264s Fetched 3491 B in 0s (0 B/s) 264s Reading package lists... 265s Reading package lists... 265s 265s Install fakeroot build dependencies (apt-based resolver) 265s -------------------------------------------------------- 265s 265s Installing build dependencies 265s Reading package lists... 265s Building dependency tree... 265s Reading state information... 265s The following NEW packages will be installed: 265s sbuild-build-depends-fakeroot-dummy 265s 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 265s Need to get 630 B of archives. 265s After this operation, 0 B of additional disk space will be used. 265s Get:1 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ sbuild-build-depends-fakeroot-dummy 0.invalid.0 [630 B] 265s Fetched 630 B in 0s (0 B/s) 265s Selecting previously unselected package sbuild-build-depends-fakeroot-dummy. 265s (Reading database ... 12546 files and directories currently installed.) 265s Preparing to unpack .../sbuild-build-depends-fakeroot-dummy_0.invalid.0_s390x.deb ... 265s Unpacking sbuild-build-depends-fakeroot-dummy (0.invalid.0) ... 265s Setting up sbuild-build-depends-fakeroot-dummy (0.invalid.0) ... 266s 266s Check disk space 266s ---------------- 266s 266s Sufficient free space for build 266s 266s User Environment 266s ---------------- 266s 266s APT_CONFIG=/var/lib/sbuild/apt.conf 266s DEB_BUILD_OPTIONS=parallel=2 266s HOME=/sbuild-nonexistent 266s LANG=C.UTF-8 266s LC_ALL=C.UTF-8 266s LOGNAME=ubuntu 266s PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games 266s SCHROOT_ALIAS_NAME=plucky-s390x-sbuild 266s SCHROOT_CHROOT_NAME=plucky-s390x-sbuild 266s SCHROOT_COMMAND=env 266s SCHROOT_GID=1000 266s SCHROOT_GROUP=ubuntu 266s SCHROOT_SESSION_ID=plucky-s390x-sbuild-19efcf6b-9ec2-4021-b1e6-6555061bbd68 266s SCHROOT_UID=1000 266s SCHROOT_USER=ubuntu 266s SHELL=/bin/sh 266s USER=ubuntu 266s 266s dpkg-buildpackage 266s ----------------- 266s 266s Command: dpkg-buildpackage --sanitize-env -us -uc -b 266s dpkg-buildpackage: info: source package procenv 266s dpkg-buildpackage: info: source version 0.51-0.2 266s dpkg-buildpackage: info: source distribution unstable 266s dpkg-buildpackage: info: source changed by Gianfranco Costamagna 266s dpkg-source --before-build . 266s dpkg-buildpackage: info: host architecture s390x 266s fakeroot debian/rules clean 266s dh clean --with autoreconf 266s dh: warning: Compatibility levels before 10 are deprecated (level 9 in use) 266s dh_clean 266s dh_clean: warning: Compatibility levels before 10 are deprecated (level 9 in use) 266s debian/rules build 266s dh build --with autoreconf 266s dh: warning: Compatibility levels before 10 are deprecated (level 9 in use) 266s dh_update_autotools_config 266s cp: warning: behavior of -n is non-portable and may change in future; use --update=none instead 266s cp: warning: behavior of -n is non-portable and may change in future; use --update=none instead 266s dh_autoreconf 268s configure.ac:17: warning: The macro 'AC_GNU_SOURCE' is obsolete. 268s configure.ac:17: You should run autoupdate. 268s ./lib/autoconf/specific.m4:489: AC_GNU_SOURCE is expanded from... 268s configure.ac:17: the top level 268s configure.ac:212: warning: AC_OUTPUT should be used without arguments. 268s configure.ac:212: You should run autoupdate. 269s debian/rules override_dh_auto_configure 269s make[1]: Entering directory '/build/reproducible-path/procenv-0.51' 269s dh_auto_configure -- --enable-reproducible-build 269s dh_auto_configure: warning: Compatibility levels before 10 are deprecated (level 9 in use) 269s ./configure --build=s390x-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir=\${prefix}/lib/s390x-linux-gnu --libexecdir=\${prefix}/lib/s390x-linux-gnu --disable-maintainer-mode --disable-dependency-tracking --enable-reproducible-build 269s 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 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 whether it is safe to define __EXTENSIONS__... yes 270s checking whether _XOPEN_SOURCE should be defined... no 270s checking for gcc option to enable large file support... none needed 270s checking build system type... s390x-ibm-linux-gnu 270s checking host system type... s390x-ibm-linux-gnu 270s checking target system type... s390x-ibm-linux-gnu 270s checking for gcc... (cached) gcc 270s checking whether the compiler supports GNU C... (cached) yes 270s checking whether gcc accepts -g... (cached) yes 270s checking for gcc option to enable C11 features... (cached) none needed 270s checking whether gcc understands -c and -o together... (cached) yes 270s checking for a BSD-compatible install... /usr/bin/install -c 270s checking for pkg-config... /usr/bin/pkg-config 270s checking pkg-config is at least version 0.9.0... yes 270s checking for check... yes 270s checking for linux/securebits.h... yes 270s checking for pthread.h... yes 270s checking for _Bool... yes 270s checking for stdbool.h that conforms to C99 or later... yes 270s checking for clock_gettime... yes 270s checking for getcwd... yes 270s checking for localtime_r... yes 270s checking for strcasecmp... yes 270s checking for strchr... yes 270s checking for strstr... yes 270s checking for sched_getcpu... yes 270s checking for ttyname... yes 270s checking for getresuid... yes 270s checking for getresgid... yes 270s checking for cpuset_alloc... no 270s checking for library containing kvm_openfiles... no 270s checking for library containing numa_available... no 270s checking for numa.h... no 270s checking for library containing cap_getmode... no 270s checking for sys/capability.h... yes 270s checking for library containing cap_init... -lcap 270s checking for library containing pthread_create... none required 270s checking for library containing getpidcon... -lselinux 270s checking for selinux/selinux.h... yes 270s checking for library containing aa_gettaskcon... -lapparmor 270s checking for library containing clock_gettime... none required 270s checking for sys/apparmor.h... yes 270s ./configure: line 6152: https://github.com/jamesodhunt/procenv: No such file or directory 270s checking whether sleep supports fractional seconds... yes 271s checking filesystem timestamp resolution... 0.01 271s checking whether build environment is sane... yes 271s checking for a race-free mkdir -p... /usr/bin/mkdir -p 271s checking for gawk... no 271s checking for mawk... mawk 271s checking whether make sets $(MAKE)... yes 271s checking whether make supports the include directive... yes (GNU style) 271s checking whether make supports nested variables... yes 271s checking xargs -n works... yes 271s checking dependency style of gcc... none 271s checking whether CC supports -Werror=format-security... yes 271s ## ---------------------------------------------------------------------------------------------------------------------- ## 271s ## checking that test './src/tests/show_compiler_details' runs (output an aide to debugging should procenv fail to build) ## 271s ## ---------------------------------------------------------------------------------------------------------------------- ## 271s XXX:-------------------------------------------------- 271s XXX: ./src/tests/show_compiler_details: preprocessor ('cpp') version 271s 271s cpp (Ubuntu 14.2.0-17ubuntu1) 14.2.0 271s Copyright (C) 2024 Free Software Foundation, Inc. 271s This is free software; see the source for copying conditions. There is NO 271s warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 271s 271s 271s XXX:-------------------------------------------------- 271s XXX: ./src/tests/show_compiler_details: compiler ('gcc') version 271s 271s gcc (Ubuntu 14.2.0-17ubuntu1) 14.2.0 271s Copyright (C) 2024 Free Software Foundation, Inc. 271s This is free software; see the source for copying conditions. There is NO 271s warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 271s 271s 271s XXX:-------------------------------------------------- 271s XXX: ./src/tests/show_compiler_details: linker ('ld') version 271s 271s GNU ld (GNU Binutils for Ubuntu) 2.44 271s Copyright (C) 2025 Free Software Foundation, Inc. 271s This program is free software; you may redistribute it under the terms of 271s the GNU General Public License version 3 or (at your option) a later version. 271s This program has absolutely no warranty. 271s 271s XXX:-------------------------------------------------- 271s XXX: ./src/tests/show_compiler_details: preprocessor ('cpp') search paths 271s 271s Using built-in specs. 271s COLLECT_GCC=cpp 271s Target: s390x-linux-gnu 271s Configured with: ../src/configure -v --with-pkgversion='Ubuntu 14.2.0-17ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-14/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2,rust --prefix=/usr --with-gcc-major-version-only --program-suffix=-14 --program-prefix=s390x-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --disable-multilib --enable-multiarch --disable-werror --with-arch=z13 --with-tune=z16 --disable-s390-excess-float-precision --with-long-double-128 --enable-checking=release --build=s390x-linux-gnu --host=s390x-linux-gnu --target=s390x-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=4 271s Thread model: posix 271s Supported LTO compression algorithms: zlib zstd 271s gcc version 14.2.0 (Ubuntu 14.2.0-17ubuntu1) 271s COLLECT_GCC_OPTIONS='-E' '-v' '-mtune=z16' '-march=z13' '-m64' '-mzarch' 271s /usr/libexec/gcc/s390x-linux-gnu/14/cc1 -E -quiet -v -imultiarch s390x-linux-gnu - -mtune=z16 -march=z13 -m64 -mzarch -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -dumpbase - 271s ignoring nonexistent directory "/usr/local/include/s390x-linux-gnu" 271s ignoring nonexistent directory "/usr/lib/gcc/s390x-linux-gnu/14/include-fixed/s390x-linux-gnu" 271s ignoring nonexistent directory "/usr/lib/gcc/s390x-linux-gnu/14/include-fixed" 271s ignoring nonexistent directory "/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/include" 271s #include "..." search starts here: 271s #include <...> search starts here: 271s /usr/lib/gcc/s390x-linux-gnu/14/include 271s /usr/local/include 271s /usr/include/s390x-linux-gnu 271s /usr/include 271s End of search list. 271s # 0 "" 271s # 0 "" 271s # 0 "" 271s # 1 "/usr/include/stdc-predef.h" 1 3 4 271s # 0 "" 2 271s # 1 "" 271s COMPILER_PATH=/usr/libexec/gcc/s390x-linux-gnu/14/:/usr/libexec/gcc/s390x-linux-gnu/14/:/usr/libexec/gcc/s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/ 271s LIBRARY_PATH=/usr/lib/gcc/s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/14/../../../s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../lib/:/lib/s390x-linux-gnu/:/lib/../lib/:/usr/lib/s390x-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/s390x-linux-gnu/14/../../../:/lib/:/usr/lib/ 271s COLLECT_GCC_OPTIONS='-E' '-v' '-mtune=z16' '-march=z13' '-m64' '-mzarch' 271s 271s XXX:-------------------------------------------------- 271s XXX: ./src/tests/show_compiler_details: preprocessor ('cpp') pre-defined symbols 271s 271s #define __DBL_MIN_EXP__ (-1021) 271s #define __VX__ 1 271s #define __UINT_LEAST16_MAX__ 0xffff 271s #define __ATOMIC_ACQUIRE 2 271s #define __WCHAR_MAX__ 0x7fffffff 271s #define __FLT128_MAX_10_EXP__ 4932 271s #define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F 271s #define __GCC_IEC_559_COMPLEX 2 271s #define __UINT_LEAST8_TYPE__ unsigned char 271s #define __FLT_MAX_EXP__ 128 271s #define __INTMAX_C(c) c ## L 271s #define __FLT32X_IS_IEC_60559__ 1 271s #define __CHAR_BIT__ 8 271s #define __UINT8_MAX__ 0xff 271s #define __SCHAR_WIDTH__ 8 271s #define __WINT_MAX__ 0xffffffffU 271s #define __FLT32_MIN_EXP__ (-125) 271s #define __ORDER_LITTLE_ENDIAN__ 1234 271s #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 271s #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 271s #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 271s #define __DBL_DENORM_MIN__ ((double)4.94065645841246544176568792868221372e-324L) 271s #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 271s #define __GCC_ATOMIC_CHAR_LOCK_FREE 2 271s #define __GCC_IEC_559 2 271s #define __FLT32X_DECIMAL_DIG__ 17 271s #define __FLT_EVAL_METHOD__ 0 271s #define __FLT64_DECIMAL_DIG__ 17 271s #define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 271s #define __UINT_FAST64_MAX__ 0xffffffffffffffffUL 271s #define __SIG_ATOMIC_TYPE__ int 271s #define __DBL_MIN_10_EXP__ (-307) 271s #define __FINITE_MATH_ONLY__ 0 271s #define __FLT32X_MAX_EXP__ 1024 271s #define __FLT64_HAS_INFINITY__ 1 271s #define __GNUC_PATCHLEVEL__ 0 271s #define __FLT32_HAS_DENORM__ 1 271s #define __SCHAR_MAX__ 0x7f 271s #define __FLT32_MAX_10_EXP__ 38 271s #define __DEC64_MAX_EXP__ 385 271s #define __INT8_C(c) c 271s #define __INT_LEAST8_WIDTH__ 8 271s #define __UINT_LEAST64_MAX__ 0xffffffffffffffffUL 271s #define __SHRT_MAX__ 0x7fff 271s #define __LDBL_MAX__ 1.18973149535723176508575932662800702e+4932L 271s #define __LDBL_IS_IEC_60559__ 1 271s #define __FLT64X_HAS_QUIET_NAN__ 1 271s #define __UINT_LEAST8_MAX__ 0xff 271s #define __GCC_ATOMIC_BOOL_LOCK_FREE 2 271s #define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 271s #define __UINTMAX_TYPE__ long unsigned int 271s #define __WCHAR_MIN__ (-__WCHAR_MAX__ - 1) 271s #define __zarch__ 1 271s #define __linux 1 271s #define __DEC32_EPSILON__ 1E-6DF 271s #define __HTM__ 1 271s #define __FLT_EVAL_METHOD_TS_18661_3__ 0 271s #define __UINT32_MAX__ 0xffffffffU 271s #define __LDBL_MAX_EXP__ 16384 271s #define __FLT128_MIN_EXP__ (-16381) 271s #define __WINT_MIN__ 0U 271s #define __FLT128_MIN_10_EXP__ (-4931) 271s #define __INT_LEAST16_WIDTH__ 16 271s #define __FLT128_MANT_DIG__ 113 271s #define __INT64_C(c) c ## L 271s #define __SSP_STRONG__ 3 271s #define __GCC_ATOMIC_POINTER_LOCK_FREE 2 271s #define __CHAR16_TYPE__ short unsigned int 271s #define __ATOMIC_SEQ_CST 5 271s #define __unix 1 271s #define __SIZEOF_INT__ 4 271s #define __FLT32X_MANT_DIG__ 53 271s #define __LONG_WIDTH__ 64 271s #define __FLT64X_EPSILON__ 1.92592994438723585305597794258492732e-34F64x 271s #define __STDC_HOSTED__ 1 271s #define __DEC64_MIN_EXP__ (-382) 271s #define __DBL_DIG__ 15 271s #define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F 271s #define __FLT32_IS_IEC_60559__ 1 271s #define __SHRT_WIDTH__ 16 271s #define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L 271s #define __STDC_UTF_16__ 1 271s #define __DBL_IS_IEC_60559__ 1 271s #define __DEC32_MAX__ 9.999999E96DF 271s #define __FLT64X_MAX_10_EXP__ 4932 271s #define __FLT64X_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F64x 271s #define __FP_FAST_FMA 1 271s #define __FLT32X_HAS_INFINITY__ 1 271s #define __INT32_MAX__ 0x7fffffff 271s #define __SIZEOF_PTRDIFF_T__ 8 271s #define __unix__ 1 271s #define __INT_WIDTH__ 32 271s #define __STDC_IEC_559__ 1 271s #define __STDC_ISO_10646__ 201706L 271s #define __DECIMAL_DIG__ 36 271s #define __STDC_IEC_559_COMPLEX__ 1 271s #define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 271s #define __gnu_linux__ 1 271s #define __FLT64X_MIN_10_EXP__ (-4931) 271s #define __LDBL_HAS_QUIET_NAN__ 1 271s #define __FLT64_MANT_DIG__ 53 271s #define __FLT64X_MANT_DIG__ 113 271s #define __GNUC__ 14 271s #define __pie__ 2 271s #define __FLT_HAS_DENORM__ 1 271s #define __SIZEOF_LONG_DOUBLE__ 16 271s #define __BIGGEST_ALIGNMENT__ 8 271s #define __FLT64_MAX_10_EXP__ 308 271s #define __DBL_MAX__ ((double)1.79769313486231570814527423731704357e+308L) 271s #define __INT_FAST32_MAX__ 0x7fffffffffffffffL 271s #define __DBL_HAS_INFINITY__ 1 271s #define __s390__ 1 271s #define __INT64_MAX__ 0x7fffffffffffffffL 271s #define __HAVE_SPECULATION_SAFE_VALUE 1 271s #define __DEC32_MIN_EXP__ (-94) 271s #define __INTPTR_WIDTH__ 64 271s #define __UINT_LEAST32_MAX__ 0xffffffffU 271s #define __FLT32X_HAS_DENORM__ 1 271s #define __INT_FAST16_TYPE__ long int 271s #define __LDBL_HAS_DENORM__ 1 271s #define __FLT128_HAS_INFINITY__ 1 271s #define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL 271s #define __DEC32_MIN__ 1E-95DF 271s #define __ARCH__ 11 271s #define __DBL_MAX_EXP__ 1024 271s #define __WCHAR_WIDTH__ 32 271s #define __DEC128_EPSILON__ 1E-33DL 271s #define __GCC_ATOMIC_LONG_LOCK_FREE 2 271s #define __PTRDIFF_MAX__ 0x7fffffffffffffffL 271s #define __FLT32_HAS_QUIET_NAN__ 1 271s #define __LONG_LONG_MAX__ 0x7fffffffffffffffLL 271s #define __SIZEOF_SIZE_T__ 8 271s #define __FLT64X_MIN_EXP__ (-16381) 271s #define __SIZEOF_WINT_T__ 4 271s #define __LONG_LONG_WIDTH__ 64 271s #define __FLT32_MAX_EXP__ 128 271s #define __GXX_ABI_VERSION 1019 271s #define __FLT_MIN_EXP__ (-125) 271s #define __GCC_HAVE_DWARF2_CFI_ASM 1 271s #define __INT16_MAX__ 0x7fff 271s #define __INT_FAST64_TYPE__ long int 271s #define __FP_FAST_FMAF 1 271s #define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128 271s #define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 271s #define __FLT64X_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F64x 271s #define __SIZEOF_POINTER__ 8 271s #define __SIZE_TYPE__ long unsigned int 271s #define __LP64__ 1 271s #define __DBL_HAS_QUIET_NAN__ 1 271s #define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x 271s #define __FLT64_MIN_EXP__ (-1021) 271s #define __FLT64_MIN_10_EXP__ (-307) 271s #define __FLT64X_DECIMAL_DIG__ 36 271s #define __DEC128_MIN__ 1E-6143DL 271s #define __REGISTER_PREFIX__ 271s #define __UINT16_MAX__ 0xffff 271s #define __DBL_HAS_DENORM__ 1 271s #define __LDBL_HAS_INFINITY__ 1 271s #define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 271s #define __UINT8_TYPE__ unsigned char 271s #define __FLT_DIG__ 6 271s #define __NO_INLINE__ 1 271s #define __DEC_EVAL_METHOD__ 2 271s #define __FLT_MANT_DIG__ 24 271s #define __LDBL_DECIMAL_DIG__ 36 271s #define __VERSION__ "14.2.0" 271s #define __UINT64_C(c) c ## UL 271s #define _STDC_PREDEF_H 1 271s #define __INT_LEAST32_MAX__ 0x7fffffff 271s #define __GCC_ATOMIC_INT_LOCK_FREE 2 271s #define __FLT128_MAX_EXP__ 16384 271s #define __FLT32_MANT_DIG__ 24 271s #define __FLOAT_WORD_ORDER__ __ORDER_BIG_ENDIAN__ 271s #define __STDC_IEC_60559_COMPLEX__ 201404L 271s #define __FLT128_HAS_DENORM__ 1 271s #define __FLT128_DIG__ 33 271s #define __INT32_C(c) c 271s #define __DEC64_EPSILON__ 1E-15DD 271s #define __ORDER_PDP_ENDIAN__ 3412 271s #define __DEC128_MIN_EXP__ (-6142) 271s #define __INT_FAST32_TYPE__ long int 271s #define __UINT_LEAST16_TYPE__ short unsigned int 271s #define unix 1 271s #define __UINT64_MAX__ 0xffffffffffffffffUL 271s #define __FLT_IS_IEC_60559__ 1 271s #define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-32BE" 271s #define __FLT64X_DIG__ 33 271s #define __INT8_TYPE__ signed char 271s #define __ELF__ 1 271s #define __GCC_ASM_FLAG_OUTPUTS__ 1 271s #define __FLT_RADIX__ 2 271s #define __INT_LEAST16_TYPE__ short int 271s #define __LDBL_EPSILON__ 1.92592994438723585305597794258492732e-34L 271s #define __UINTMAX_C(c) c ## UL 271s #define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 271s #define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x 271s #define __SIG_ATOMIC_MAX__ 0x7fffffff 271s #define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 271s #define __USER_LABEL_PREFIX__ 271s #define __STDC_IEC_60559_BFP__ 201404L 271s #define __FLT32_HAS_INFINITY__ 1 271s #define __SIZEOF_LONG__ 8 271s #define __LDBL_DIG__ 33 271s #define __FLT64_IS_IEC_60559__ 1 271s #define __FLT32X_MIN_EXP__ (-1021) 271s #define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF 271s #define __INT_FAST16_MAX__ 0x7fffffffffffffffL 271s #define __DBL_EPSILON__ ((double)2.22044604925031308084726333618164062e-16L) 271s #define __FLT64_DIG__ 15 271s #define __UINT_FAST32_MAX__ 0xffffffffffffffffUL 271s #define __UINT_LEAST64_TYPE__ long unsigned int 271s #define __FLT_HAS_QUIET_NAN__ 1 271s #define __FLT_MAX_10_EXP__ 38 271s #define __LONG_MAX__ 0x7fffffffffffffffL 271s #define __FLT64X_HAS_DENORM__ 1 271s #define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL 271s #define __FLT_HAS_INFINITY__ 1 271s #define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" 271s #define __CHAR_UNSIGNED__ 1 271s #define __UINT_FAST16_TYPE__ long unsigned int 271s #define __DEC64_MAX__ 9.999999999999999E384DD 271s #define __INT_FAST32_WIDTH__ 64 271s #define __PRAGMA_REDEFINE_EXTNAME 1 271s #define __SIZE_WIDTH__ 64 271s #define __INT_LEAST16_MAX__ 0x7fff 271s #define __DEC64_MANT_DIG__ 16 271s #define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 271s #define __SIG_ATOMIC_WIDTH__ 32 271s #define __INT_LEAST64_TYPE__ long int 271s #define __INT16_TYPE__ short int 271s #define __INT_LEAST8_TYPE__ signed char 271s #define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 271s #define __STDC_VERSION__ 201710L 271s #define __DEC32_MAX_EXP__ 97 271s #define __INT_FAST8_MAX__ 0x7f 271s #define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 271s #define __INTPTR_MAX__ 0x7fffffffffffffffL 271s #define linux 1 271s #define __FLT64_HAS_QUIET_NAN__ 1 271s #define __FLT32_MIN_10_EXP__ (-37) 271s #define __FLT32X_DIG__ 15 271s #define __UINT16_C(c) c 271s #define __PTRDIFF_WIDTH__ 64 271s #define __LDBL_MANT_DIG__ 113 271s #define __INT_FAST16_WIDTH__ 64 271s #define __FLT64X_MAX__ 1.18973149535723176508575932662800702e+4932F64x 271s #define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) 271s #define __INTPTR_TYPE__ long int 271s #define __UINT16_TYPE__ short unsigned int 271s #define __WCHAR_TYPE__ int 271s #define __SIZEOF_FLOAT__ 4 271s #define __pic__ 2 271s #define __UINTPTR_MAX__ 0xffffffffffffffffUL 271s #define __INT_FAST64_WIDTH__ 64 271s #define __FLT32_DECIMAL_DIG__ 9 271s #define __INT_FAST64_MAX__ 0x7fffffffffffffffL 271s #define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 271s #define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F 271s #define __FLT64X_MAX_EXP__ 16384 271s #define __UINT_FAST64_TYPE__ long unsigned int 271s #define __INT_MAX__ 0x7fffffff 271s #define __linux__ 1 271s #define __LONG_DOUBLE_128__ 1 271s #define __INT64_TYPE__ long int 271s #define __ORDER_BIG_ENDIAN__ 4321 271s #define __DBL_MANT_DIG__ 53 271s #define __INT_LEAST64_MAX__ 0x7fffffffffffffffL 271s #define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 271s #define __FP_FAST_FMAF32 1 271s #define __DEC64_MIN__ 1E-383DD 271s #define __WINT_TYPE__ unsigned int 271s #define __UINT_LEAST32_TYPE__ unsigned int 271s #define __SIZEOF_SHORT__ 2 271s #define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32 271s #define __LDBL_MIN_EXP__ (-16381) 271s #define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 271s #define __WINT_WIDTH__ 32 271s #define __FP_FAST_FMAF64 1 271s #define __INT_LEAST8_MAX__ 0x7f 271s #define __INT_LEAST64_WIDTH__ 64 271s #define __FLT32X_MAX_10_EXP__ 308 271s #define __s390x__ 1 271s #define __SIZEOF_INT128__ 16 271s #define __FLT64X_IS_IEC_60559__ 1 271s #define __LDBL_MAX_10_EXP__ 4932 271s #define __ATOMIC_RELAXED 0 271s #define __INT_LEAST32_TYPE__ int 271s #define _LP64 1 271s #define __UINT8_C(c) c 271s #define __FLT64_MAX_EXP__ 1024 271s #define __SIZEOF_WCHAR_T__ 4 271s #define __UINT64_TYPE__ long unsigned int 271s #define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64 271s #define __FLT128_HAS_QUIET_NAN__ 1 271s #define __INTMAX_MAX__ 0x7fffffffffffffffL 271s #define __INT_FAST8_TYPE__ signed char 271s #define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x 271s #define __GNUC_STDC_INLINE__ 1 271s #define __FLT64_HAS_DENORM__ 1 271s #define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 271s #define __FP_FAST_FMAF32x 1 271s #define __DBL_DECIMAL_DIG__ 17 271s #define __STDC_UTF_32__ 1 271s #define __INT_FAST8_WIDTH__ 8 271s #define __BYTE_ORDER__ __ORDER_BIG_ENDIAN__ 271s #define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x 271s #define __DBL_NORM_MAX__ ((double)1.79769313486231570814527423731704357e+308L) 271s #define __FLT64X_HAS_INFINITY__ 1 271s #define __INTMAX_WIDTH__ 64 271s #define __FLT32_DIG__ 6 271s #define __UINT32_C(c) c ## U 271s #define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F 271s #define __FLT128_IS_IEC_60559__ 1 271s #define __INT8_MAX__ 0x7f 271s #define __DBL_MIN__ ((double)2.22507385850720138309023271733240406e-308L) 271s #define __PIC__ 2 271s #define __UINT_FAST32_TYPE__ long unsigned int 271s #define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x 271s #define __CHAR32_TYPE__ unsigned int 271s #define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F 271s #define __INT32_TYPE__ int 271s #define __SIZEOF_DOUBLE__ 8 271s #define __UINT_FAST8_MAX__ 0xff 271s #define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 271s #define __INT_LEAST32_WIDTH__ 32 271s #define __INTMAX_TYPE__ long int 271s #define __DEC128_MAX_EXP__ 6145 271s #define __FLT32X_HAS_QUIET_NAN__ 1 271s #define __ATOMIC_CONSUME 1 271s #define __GNUC_MINOR__ 2 271s #define __UINTMAX_MAX__ 0xffffffffffffffffUL 271s #define __DEC32_MANT_DIG__ 7 271s #define __PIE__ 2 271s #define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x 271s #define __DBL_MAX_10_EXP__ 308 271s #define __LDBL_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966L 271s #define __INT16_C(c) c 271s #define __ATOMIC_RELEASE 3 271s #define __STDC__ 1 271s #define __PTRDIFF_TYPE__ long int 271s #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 1 271s #define __UINT32_TYPE__ unsigned int 271s #define __FLT32X_MIN_10_EXP__ (-307) 271s #define __UINTPTR_TYPE__ long unsigned int 271s #define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD 271s #define __DEC128_MANT_DIG__ 34 271s #define __LDBL_MIN_10_EXP__ (-4931) 271s #define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 271s #define __SIZEOF_LONG_LONG__ 8 271s #define __FLT128_DECIMAL_DIG__ 36 271s #define __GCC_ATOMIC_LLONG_LOCK_FREE 2 271s #define __FLT_DECIMAL_DIG__ 9 271s #define __UINT_FAST16_MAX__ 0xffffffffffffffffUL 271s #define __LDBL_NORM_MAX__ 1.18973149535723176508575932662800702e+4932L 271s #define __FLT_MIN_10_EXP__ (-37) 271s #define __GCC_ATOMIC_SHORT_LOCK_FREE 2 271s #define __SIZE_MAX__ 0xffffffffffffffffUL 271s #define __UINT_FAST8_TYPE__ unsigned char 271s #define __ATOMIC_ACQ_REL 4 271s 271s XXX:-------------------------------------------------- 271s XXX: ./src/tests/show_compiler_details: compiler ('gcc') features 271s 271s Using built-in specs. 271s COLLECT_GCC=gcc 271s Target: s390x-linux-gnu 271s Configured with: ../src/configure -v --with-pkgversion='Ubuntu 14.2.0-17ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-14/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2,rust --prefix=/usr --with-gcc-major-version-only --program-suffix=-14 --program-prefix=s390x-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --disable-multilib --enable-multiarch --disable-werror --with-arch=z13 --with-tune=z16 --disable-s390-excess-float-precision --with-long-double-128 --enable-checking=release --build=s390x-linux-gnu --host=s390x-linux-gnu --target=s390x-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=4 271s Thread model: posix 271s Supported LTO compression algorithms: zlib zstd 271s gcc version 14.2.0 (Ubuntu 14.2.0-17ubuntu1) 271s 271s XXX:-------------------------------------------------- 271s XXX: ./src/tests/show_compiler_details: compiler ('gcc') search paths 271s 271s install: /usr/lib/gcc/s390x-linux-gnu/14/ 271s programs: =/usr/libexec/gcc/s390x-linux-gnu/14/:/usr/libexec/gcc/s390x-linux-gnu/14/:/usr/libexec/gcc/s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/bin/s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/bin/s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/bin/ 271s libraries: =/usr/lib/gcc/s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/lib/s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/lib/s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/lib/../lib/:/usr/lib/gcc/s390x-linux-gnu/14/../../../s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/14/../../../s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../lib/:/lib/s390x-linux-gnu/14/:/lib/s390x-linux-gnu/:/lib/../lib/:/usr/lib/s390x-linux-gnu/14/:/usr/lib/s390x-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/lib/:/usr/lib/gcc/s390x-linux-gnu/14/../../../:/lib/:/usr/lib/ 271s 271s XXX:-------------------------------------------------- 271s ## ---------------------------------------------------------------- ## 271s ## showing result of test './src/tests/show_compiler_details': pass ## 271s ## ---------------------------------------------------------------- ## 271s checking that generated files are newer than configure... done 271s configure: creating ./config.status 271s config.status: creating Makefile 271s config.status: creating src/Makefile 271s config.status: creating procenv.spec 271s config.status: creating config.h 271s config.status: executing depfiles commands 271s 271s Configure settings for procenv version 0.51 271s 271s Build platform : linux 271s Reproducible build : yes 271s Debug build : no 271s Check unit test framework : yes 271s 271s Libraries: 271s 271s libapparmor : yes 271s libselinux : yes 271s libcap : yes 271s libnuma : no 271s libpthread : yes 271s libkvm : no 271s 271s make[1]: Leaving directory '/build/reproducible-path/procenv-0.51' 271s dh_auto_build 271s dh_auto_build: warning: Compatibility levels before 10 are deprecated (level 9 in use) 271s make -j1 271s make[1]: Entering directory '/build/reproducible-path/procenv-0.51' 271s make all-recursive 271s make[2]: Entering directory '/build/reproducible-path/procenv-0.51' 271s Making all in src 271s make[3]: Entering directory '/build/reproducible-path/procenv-0.51/src' 271s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o procenv-procenv.o `test -f 'procenv.c' || echo './'`procenv.c 272s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o procenv-pr_list.o `test -f 'pr_list.c' || echo './'`pr_list.c 272s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o procenv-pstring.o `test -f 'pstring.c' || echo './'`pstring.c 272s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o procenv-string-util.o `test -f 'string-util.c' || echo './'`string-util.c 272s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o procenv-output.o `test -f 'output.c' || echo './'`output.c 272s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o procenv-util.o `test -f 'util.c' || echo './'`util.c 272s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o platform/procenv-platform-generic.o `test -f 'platform/platform-generic.c' || echo './'`platform/platform-generic.c 273s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o platform/linux/procenv-platform.o `test -f 'platform/linux/platform.c' || echo './'`platform/linux/platform.c 274s gcc -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -Wl,--gc-sections -Wl,-Bsymbolic-functions -Wl,-z,relro -o procenv procenv-procenv.o procenv-pr_list.o procenv-pstring.o procenv-string-util.o procenv-output.o procenv-util.o platform/procenv-platform-generic.o platform/linux/procenv-platform.o -lapparmor -lselinux -lcap 274s make[3]: Leaving directory '/build/reproducible-path/procenv-0.51/src' 274s make[3]: Entering directory '/build/reproducible-path/procenv-0.51' 274s make[3]: Leaving directory '/build/reproducible-path/procenv-0.51' 274s make[2]: Leaving directory '/build/reproducible-path/procenv-0.51' 274s make[1]: Leaving directory '/build/reproducible-path/procenv-0.51' 275s dh_auto_test 275s dh_auto_test: warning: Compatibility levels before 10 are deprecated (level 9 in use) 275s make -j1 check "TESTSUITEFLAGS=-j1 --verbose" VERBOSE=1 275s make[1]: Entering directory '/build/reproducible-path/procenv-0.51' 275s Making check in src 275s make[2]: Entering directory '/build/reproducible-path/procenv-0.51/src' 275s make check_pr_list 275s make[3]: Entering directory '/build/reproducible-path/procenv-0.51/src' 275s gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=3 -pthread -I../src -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o tests/check_pr_list-check_pr_list.o `test -f 'tests/check_pr_list.c' || echo './'`tests/check_pr_list.c 276s gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=3 -pthread -I../src -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o check_pr_list-pr_list.o `test -f 'pr_list.c' || echo './'`pr_list.c 276s gcc -pthread -I../src -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -Wl,-Bsymbolic-functions -Wl,-z,relro -o check_pr_list tests/check_pr_list-check_pr_list.o check_pr_list-pr_list.o -lcheck_pic -lrt -lm -lsubunit -lapparmor -lselinux -lcap 276s make[3]: Leaving directory '/build/reproducible-path/procenv-0.51/src' 276s make check-TESTS 276s make[3]: Entering directory '/build/reproducible-path/procenv-0.51/src' 276s sed -e 's|[@]builddir[@]|../src|g' \ 276s -e 's|[@]man_path[@]|../man/procenv.1|g' \ 276s -e 's|[@]package_url[@]|https://github.com/jamesodhunt/procenv|g' \ 276s -e 's|[@]package_url[@]|https://github.com/jamesodhunt/procenv|g' \ 276s -e 's|[@]procenv_platform[@]|linux|g' \ 276s tests/check_all_args.in > check_all_args 276s chmod +x check_all_args 276s XXX:-------------------------------------------------- 276s XXX: ./tests/show_machine_details: Memory details 276s 276s MemTotal: 4092964 kB 276s MemFree: 2499136 kB 276s MemAvailable: 3694964 kB 276s Buffers: 70892 kB 276s Cached: 1146580 kB 276s SwapCached: 0 kB 276s Active: 241792 kB 276s Inactive: 1068636 kB 276s Active(anon): 99940 kB 276s Inactive(anon): 0 kB 276s Active(file): 141852 kB 276s Inactive(file): 1068636 kB 276s Unevictable: 25136 kB 276s Mlocked: 25136 kB 276s SwapTotal: 0 kB 276s SwapFree: 0 kB 276s Zswap: 0 kB 276s Zswapped: 0 kB 276s Dirty: 139200 kB 276s Writeback: 0 kB 276s AnonPages: 118052 kB 276s Mapped: 66260 kB 276s Shmem: 324 kB 276s KReclaimable: 83500 kB 276s Slab: 147616 kB 276s SReclaimable: 83500 kB 276s SUnreclaim: 64116 kB 276s KernelStack: 2200 kB 276s PageTables: 7308 kB 276s SecPageTables: 0 kB 276s NFS_Unstable: 0 kB 276s Bounce: 0 kB 276s WritebackTmp: 0 kB 276s CommitLimit: 2046480 kB 276s Committed_AS: 253160 kB 276s VmallocTotal: 534773760 kB 276s VmallocUsed: 8796 kB 276s VmallocChunk: 0 kB 276s Percpu: 632 kB 276s AnonHugePages: 0 kB 276s ShmemHugePages: 0 kB 276s ShmemPmdMapped: 0 kB 276s FileHugePages: 0 kB 276s FilePmdMapped: 0 kB 276s CmaTotal: 0 kB 276s CmaFree: 0 kB 276s HugePages_Total: 0 276s HugePages_Free: 0 276s HugePages_Rsvd: 0 276s HugePages_Surp: 0 276s Hugepagesize: 1024 kB 276s Hugetlb: 0 kB 276s DirectMap4k: 76792 kB 276s DirectMap1M: 4117504 kB 276s DirectMap2G: 0 kB 276s 276s XXX:-------------------------------------------------- 276s XXX: ./tests/show_machine_details: ulimit details 276s 276s time(seconds) unlimited 276s file(blocks) unlimited 276s data(kbytes) unlimited 276s stack(kbytes) 8192 276s coredump(blocks) 0 276s memory(kbytes) unlimited 276s locked memory(kbytes) 511620 276s process 15897 276s nofiles 1024 276s vmemory(kbytes) unlimited 276s locks unlimited 276s rtprio 0 276s 276s XXX:-------------------------------------------------- 276s XXX: ./tests/show_machine_details: CPU count 276s 276s 2 276s 276s XXX:-------------------------------------------------- 276s XXX: ./tests/show_machine_details: CPU details 276s 276s vendor_id : IBM/S390 276s # processors : 2 276s bogomips per cpu: 3241.00 276s max thread id : 0 276s features : esan3 zarch stfle msa ldisp eimm dfp edat etf3eh highgprs te vx vxd vxe gs vxe2 vxp sort dflt 276s facilities : 0 1 2 3 4 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 47 48 49 50 51 52 53 54 57 58 59 60 61 64 65 69 71 72 73 74 75 76 77 78 80 81 82 129 130 131 133 134 135 138 139 140 146 147 148 150 151 152 155 156 276s cache0 : level=1 type=Data scope=Private size=128K line_size=256 associativity=8 276s cache1 : level=1 type=Instruction scope=Private size=128K line_size=256 associativity=8 276s cache2 : level=2 type=Data scope=Private size=4096K line_size=256 associativity=8 276s cache3 : level=2 type=Instruction scope=Private size=4096K line_size=256 associativity=8 276s cache4 : level=3 type=Unified scope=Shared size=262144K line_size=256 associativity=32 276s cache5 : level=4 type=Unified scope=Shared size=983040K line_size=256 associativity=60 276s processor 0: version = FF, identification = 0811B8, machine = 8561 276s processor 1: version = FF, identification = 0811B8, machine = 8561 276s 276s XXX:-------------------------------------------------- 276s XXX: ./tests/show_machine_details: Nested KVM support 276s 276s N 276s 276s XXX:-------------------------------------------------- 276s XXX: ./tests/show_machine_details: uname 276s 276s Linux autopkgtest 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 s390x s390x s390x GNU/Linux 276s 276s XXX:-------------------------------------------------- 276s XXX: ./tests/show_machine_details: kernel modules 276s 276s ./tests/show_machine_details: 50: lsmod: not found 276s 276s XXX:-------------------------------------------------- 276s XXX: ./tests/show_machine_details: distro details 276s 276s PRETTY_NAME="Ubuntu Plucky Puffin (development branch)" 276s NAME="Ubuntu" 276s VERSION_ID="25.04" 276s VERSION="25.04 (Plucky Puffin)" 276s VERSION_CODENAME=plucky 276s ID=ubuntu 276s ID_LIKE=debian 276s HOME_URL="https://www.ubuntu.com/" 276s SUPPORT_URL="https://help.ubuntu.com/" 276s BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 276s PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 276s UBUNTU_CODENAME=plucky 276s LOGO=ubuntu-logo 276s DISTRIB_ID=Ubuntu 276s DISTRIB_RELEASE=25.04 276s DISTRIB_CODENAME=plucky 276s DISTRIB_DESCRIPTION="Ubuntu Plucky Puffin (development branch)" 276s Ubuntu Plucky Puffin (development branch) \n \l 276s 276s 276s PASS: tests/show_machine_details 276s Running suite(s): procenv pr_list 276s 100%: Checks: 7, Failures: 0, Errors: 0 276s PASS: check_pr_list 276s INFO:LANG=C.UTF-8:LC_ALL=: language list: 'C C.UTF-8 POSIX' 276s INFO:LANG=C:LC_ALL=C: Running procenv version 0.51 tests for language 'C' 276s INFO:LANG=C:LC_ALL=C: Ensure '--help' works 276s INFO:LANG=C:LC_ALL=C: Ensure all documented options produce output 276s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -a 1>"/tmp/check_all_args.4ThniCIk3L" 2>"/tmp/check_all_args.rSUu1S265g"' 276s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -a 1>"/tmp/check_all_args.4ThniCIk3L" 2>"/tmp/check_all_args.rSUu1S265g"' 276s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -a 1>"/tmp/check_all_args.4ThniCIk3L" 2>"/tmp/check_all_args.rSUu1S265g"' 276s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -a' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --meta 1>"/tmp/check_all_args.80yfINyWUV" 2>"/tmp/check_all_args.4HJYDcuFuD"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --meta 1>"/tmp/check_all_args.80yfINyWUV" 2>"/tmp/check_all_args.4HJYDcuFuD"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --meta 1>"/tmp/check_all_args.80yfINyWUV" 2>"/tmp/check_all_args.4HJYDcuFuD"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --meta' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -A 1>"/tmp/check_all_args.1tPhKu8Osa" 2>"/tmp/check_all_args.MYrL9tFaET"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -A 1>"/tmp/check_all_args.1tPhKu8Osa" 2>"/tmp/check_all_args.MYrL9tFaET"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -A 1>"/tmp/check_all_args.1tPhKu8Osa" 2>"/tmp/check_all_args.MYrL9tFaET"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -A' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --arguments 1>"/tmp/check_all_args.fJ2csRImPx" 2>"/tmp/check_all_args.uiRpu7pnoU"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --arguments 1>"/tmp/check_all_args.fJ2csRImPx" 2>"/tmp/check_all_args.uiRpu7pnoU"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --arguments 1>"/tmp/check_all_args.fJ2csRImPx" 2>"/tmp/check_all_args.uiRpu7pnoU"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --arguments' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -b 1>"/tmp/check_all_args.MhH23lQIKd" 2>"/tmp/check_all_args.MWfW4Q65PL"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -b 1>"/tmp/check_all_args.MhH23lQIKd" 2>"/tmp/check_all_args.MWfW4Q65PL"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -b 1>"/tmp/check_all_args.MhH23lQIKd" 2>"/tmp/check_all_args.MWfW4Q65PL"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -b' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --libs 1>"/tmp/check_all_args.4GZRtHDTHR" 2>"/tmp/check_all_args.EfDxZpG6SV"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --libs 1>"/tmp/check_all_args.4GZRtHDTHR" 2>"/tmp/check_all_args.EfDxZpG6SV"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --libs 1>"/tmp/check_all_args.4GZRtHDTHR" 2>"/tmp/check_all_args.EfDxZpG6SV"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --libs' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -B 1>"/tmp/check_all_args.pjQyw2Mrhb" 2>"/tmp/check_all_args.Bz7yvJt6yu"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -B 1>"/tmp/check_all_args.pjQyw2Mrhb" 2>"/tmp/check_all_args.Bz7yvJt6yu"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -B 1>"/tmp/check_all_args.pjQyw2Mrhb" 2>"/tmp/check_all_args.Bz7yvJt6yu"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -B' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --libc 1>"/tmp/check_all_args.8LT06zr3FX" 2>"/tmp/check_all_args.h7l80Udzjv"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --libc 1>"/tmp/check_all_args.8LT06zr3FX" 2>"/tmp/check_all_args.h7l80Udzjv"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --libc 1>"/tmp/check_all_args.8LT06zr3FX" 2>"/tmp/check_all_args.h7l80Udzjv"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --libc' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -c 1>"/tmp/check_all_args.G38mIUelLR" 2>"/tmp/check_all_args.EyeURsX5DD"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -c 1>"/tmp/check_all_args.G38mIUelLR" 2>"/tmp/check_all_args.EyeURsX5DD"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -c 1>"/tmp/check_all_args.G38mIUelLR" 2>"/tmp/check_all_args.EyeURsX5DD"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -c' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --cgroups 1>"/tmp/check_all_args.MN9I1mJtM4" 2>"/tmp/check_all_args.lwuYpHd70K"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --cgroups 1>"/tmp/check_all_args.MN9I1mJtM4" 2>"/tmp/check_all_args.lwuYpHd70K"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --cgroups 1>"/tmp/check_all_args.MN9I1mJtM4" 2>"/tmp/check_all_args.lwuYpHd70K"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --cgroups' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -C 1>"/tmp/check_all_args.6gvMCKBCoU" 2>"/tmp/check_all_args.IocugWDCRL"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -C 1>"/tmp/check_all_args.6gvMCKBCoU" 2>"/tmp/check_all_args.IocugWDCRL"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -C 1>"/tmp/check_all_args.6gvMCKBCoU" 2>"/tmp/check_all_args.IocugWDCRL"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -C' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --cpu 1>"/tmp/check_all_args.bYCEdUywkJ" 2>"/tmp/check_all_args.QIyar0cQQy"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --cpu 1>"/tmp/check_all_args.bYCEdUywkJ" 2>"/tmp/check_all_args.QIyar0cQQy"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --cpu 1>"/tmp/check_all_args.bYCEdUywkJ" 2>"/tmp/check_all_args.QIyar0cQQy"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --cpu' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -d 1>"/tmp/check_all_args.r1mIN41itW" 2>"/tmp/check_all_args.lz9vYox4Zb"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -d 1>"/tmp/check_all_args.r1mIN41itW" 2>"/tmp/check_all_args.lz9vYox4Zb"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -d 1>"/tmp/check_all_args.r1mIN41itW" 2>"/tmp/check_all_args.lz9vYox4Zb"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -d' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --compiler 1>"/tmp/check_all_args.DlDYxnqpdW" 2>"/tmp/check_all_args.B2woS0QUdI"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --compiler 1>"/tmp/check_all_args.DlDYxnqpdW" 2>"/tmp/check_all_args.B2woS0QUdI"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --compiler 1>"/tmp/check_all_args.DlDYxnqpdW" 2>"/tmp/check_all_args.B2woS0QUdI"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --compiler' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -e 1>"/tmp/check_all_args.2hwCPjBURD" 2>"/tmp/check_all_args.QPdrQfod0T"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -e 1>"/tmp/check_all_args.2hwCPjBURD" 2>"/tmp/check_all_args.QPdrQfod0T"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -e 1>"/tmp/check_all_args.2hwCPjBURD" 2>"/tmp/check_all_args.QPdrQfod0T"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -e' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --environment 1>"/tmp/check_all_args.dQ7EM0N5if" 2>"/tmp/check_all_args.8mVyz54TVF"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --environment 1>"/tmp/check_all_args.dQ7EM0N5if" 2>"/tmp/check_all_args.8mVyz54TVF"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --environment 1>"/tmp/check_all_args.dQ7EM0N5if" 2>"/tmp/check_all_args.8mVyz54TVF"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --environment' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -E 1>"/tmp/check_all_args.TQop3juruz" 2>"/tmp/check_all_args.ifPQ4Ma9qN"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -E 1>"/tmp/check_all_args.TQop3juruz" 2>"/tmp/check_all_args.ifPQ4Ma9qN"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -E 1>"/tmp/check_all_args.TQop3juruz" 2>"/tmp/check_all_args.ifPQ4Ma9qN"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -E' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --semaphores 1>"/tmp/check_all_args.Zk5j1NH7jq" 2>"/tmp/check_all_args.XZyCI6veSV"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --semaphores 1>"/tmp/check_all_args.Zk5j1NH7jq" 2>"/tmp/check_all_args.XZyCI6veSV"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --semaphores 1>"/tmp/check_all_args.Zk5j1NH7jq" 2>"/tmp/check_all_args.XZyCI6veSV"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --semaphores' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -f 1>"/tmp/check_all_args.bizkZ7heWC" 2>"/tmp/check_all_args.zh9PzHD2Nu"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -f 1>"/tmp/check_all_args.bizkZ7heWC" 2>"/tmp/check_all_args.zh9PzHD2Nu"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -f 1>"/tmp/check_all_args.bizkZ7heWC" 2>"/tmp/check_all_args.zh9PzHD2Nu"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -f' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --fds 1>"/tmp/check_all_args.olelYkdCLm" 2>"/tmp/check_all_args.PMWpBcr1Hg"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --fds 1>"/tmp/check_all_args.olelYkdCLm" 2>"/tmp/check_all_args.PMWpBcr1Hg"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --fds 1>"/tmp/check_all_args.olelYkdCLm" 2>"/tmp/check_all_args.PMWpBcr1Hg"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --fds' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -F 1>"/tmp/check_all_args.2IHkYCNPKw" 2>"/tmp/check_all_args.QA0LefO6At"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -F 1>"/tmp/check_all_args.2IHkYCNPKw" 2>"/tmp/check_all_args.QA0LefO6At"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -F 1>"/tmp/check_all_args.2IHkYCNPKw" 2>"/tmp/check_all_args.QA0LefO6At"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -F' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --namespaces 1>"/tmp/check_all_args.vpSGtALX57" 2>"/tmp/check_all_args.m2TB55Fnl2"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --namespaces 1>"/tmp/check_all_args.vpSGtALX57" 2>"/tmp/check_all_args.m2TB55Fnl2"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --namespaces 1>"/tmp/check_all_args.vpSGtALX57" 2>"/tmp/check_all_args.m2TB55Fnl2"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --namespaces' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -g 1>"/tmp/check_all_args.ja6tuMlTVj" 2>"/tmp/check_all_args.EDfpuFxECe"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -g 1>"/tmp/check_all_args.ja6tuMlTVj" 2>"/tmp/check_all_args.EDfpuFxECe"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -g 1>"/tmp/check_all_args.ja6tuMlTVj" 2>"/tmp/check_all_args.EDfpuFxECe"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -g' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --sizeof 1>"/tmp/check_all_args.SJxb7w6sH1" 2>"/tmp/check_all_args.1my7liuaC2"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --sizeof 1>"/tmp/check_all_args.SJxb7w6sH1" 2>"/tmp/check_all_args.1my7liuaC2"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --sizeof 1>"/tmp/check_all_args.SJxb7w6sH1" 2>"/tmp/check_all_args.1my7liuaC2"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --sizeof' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -i 1>"/tmp/check_all_args.EC3uP9wWFt" 2>"/tmp/check_all_args.7Ea20tzadS"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -i 1>"/tmp/check_all_args.EC3uP9wWFt" 2>"/tmp/check_all_args.7Ea20tzadS"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -i 1>"/tmp/check_all_args.EC3uP9wWFt" 2>"/tmp/check_all_args.7Ea20tzadS"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -i' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --misc 1>"/tmp/check_all_args.GW2fomSpft" 2>"/tmp/check_all_args.4MAA2vn9HZ"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --misc 1>"/tmp/check_all_args.GW2fomSpft" 2>"/tmp/check_all_args.4MAA2vn9HZ"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --misc 1>"/tmp/check_all_args.GW2fomSpft" 2>"/tmp/check_all_args.4MAA2vn9HZ"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --misc' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -j 1>"/tmp/check_all_args.UnNB2QXKnE" 2>"/tmp/check_all_args.TJ6SQvPtwe"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -j 1>"/tmp/check_all_args.UnNB2QXKnE" 2>"/tmp/check_all_args.TJ6SQvPtwe"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -j 1>"/tmp/check_all_args.UnNB2QXKnE" 2>"/tmp/check_all_args.TJ6SQvPtwe"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -j' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --uname 1>"/tmp/check_all_args.J9cFmoCXhO" 2>"/tmp/check_all_args.RNNWIwaCtY"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --uname 1>"/tmp/check_all_args.J9cFmoCXhO" 2>"/tmp/check_all_args.RNNWIwaCtY"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --uname 1>"/tmp/check_all_args.J9cFmoCXhO" 2>"/tmp/check_all_args.RNNWIwaCtY"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --uname' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -k 1>"/tmp/check_all_args.YdiCccuRFi" 2>"/tmp/check_all_args.vAG4HYlhHz"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -k 1>"/tmp/check_all_args.YdiCccuRFi" 2>"/tmp/check_all_args.vAG4HYlhHz"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -k 1>"/tmp/check_all_args.YdiCccuRFi" 2>"/tmp/check_all_args.vAG4HYlhHz"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -k' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --clocks 1>"/tmp/check_all_args.n3rogGB8dK" 2>"/tmp/check_all_args.aE7NmIWZeX"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --clocks 1>"/tmp/check_all_args.n3rogGB8dK" 2>"/tmp/check_all_args.aE7NmIWZeX"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --clocks 1>"/tmp/check_all_args.n3rogGB8dK" 2>"/tmp/check_all_args.aE7NmIWZeX"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --clocks' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -l 1>"/tmp/check_all_args.MvIKz7rXJ4" 2>"/tmp/check_all_args.QqjC1FNSNT"' 277s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -l 1>"/tmp/check_all_args.MvIKz7rXJ4" 2>"/tmp/check_all_args.QqjC1FNSNT"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -l 1>"/tmp/check_all_args.MvIKz7rXJ4" 2>"/tmp/check_all_args.QqjC1FNSNT"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -l' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --limits 1>"/tmp/check_all_args.Rk5028nW4h" 2>"/tmp/check_all_args.NndY4y5gUo"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --limits 1>"/tmp/check_all_args.Rk5028nW4h" 2>"/tmp/check_all_args.NndY4y5gUo"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --limits 1>"/tmp/check_all_args.Rk5028nW4h" 2>"/tmp/check_all_args.NndY4y5gUo"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --limits' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -L 1>"/tmp/check_all_args.IthMUlETiE" 2>"/tmp/check_all_args.KRsACMRjPp"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -L 1>"/tmp/check_all_args.IthMUlETiE" 2>"/tmp/check_all_args.KRsACMRjPp"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -L 1>"/tmp/check_all_args.IthMUlETiE" 2>"/tmp/check_all_args.KRsACMRjPp"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -L' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --locale 1>"/tmp/check_all_args.9bOQnuln3c" 2>"/tmp/check_all_args.DlI3z37ecN"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --locale 1>"/tmp/check_all_args.9bOQnuln3c" 2>"/tmp/check_all_args.DlI3z37ecN"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --locale 1>"/tmp/check_all_args.9bOQnuln3c" 2>"/tmp/check_all_args.DlI3z37ecN"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --locale' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -m 1>"/tmp/check_all_args.HWoOFBx0HX" 2>"/tmp/check_all_args.GCEvNGKzGb"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -m 1>"/tmp/check_all_args.HWoOFBx0HX" 2>"/tmp/check_all_args.GCEvNGKzGb"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -m 1>"/tmp/check_all_args.HWoOFBx0HX" 2>"/tmp/check_all_args.GCEvNGKzGb"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -m' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --mounts 1>"/tmp/check_all_args.jHYLqzqK26" 2>"/tmp/check_all_args.JDX5SvkKgD"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --mounts 1>"/tmp/check_all_args.jHYLqzqK26" 2>"/tmp/check_all_args.JDX5SvkKgD"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --mounts 1>"/tmp/check_all_args.jHYLqzqK26" 2>"/tmp/check_all_args.JDX5SvkKgD"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --mounts' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -M 1>"/tmp/check_all_args.Qryaro7Hrl" 2>"/tmp/check_all_args.d3NzLnZB6Q"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -M 1>"/tmp/check_all_args.Qryaro7Hrl" 2>"/tmp/check_all_args.d3NzLnZB6Q"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -M 1>"/tmp/check_all_args.Qryaro7Hrl" 2>"/tmp/check_all_args.d3NzLnZB6Q"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -M' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --message-queues 1>"/tmp/check_all_args.CH4DG257Nk" 2>"/tmp/check_all_args.pciSTyWODr"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --message-queues 1>"/tmp/check_all_args.CH4DG257Nk" 2>"/tmp/check_all_args.pciSTyWODr"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --message-queues 1>"/tmp/check_all_args.CH4DG257Nk" 2>"/tmp/check_all_args.pciSTyWODr"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --message-queues' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -n 1>"/tmp/check_all_args.XqSZxB4SMl" 2>"/tmp/check_all_args.mJU2UeuFJq"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -n 1>"/tmp/check_all_args.XqSZxB4SMl" 2>"/tmp/check_all_args.mJU2UeuFJq"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -n 1>"/tmp/check_all_args.XqSZxB4SMl" 2>"/tmp/check_all_args.mJU2UeuFJq"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -n' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --confstr 1>"/tmp/check_all_args.eiy0rRYXGM" 2>"/tmp/check_all_args.lMAiqkItoF"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --confstr 1>"/tmp/check_all_args.eiy0rRYXGM" 2>"/tmp/check_all_args.lMAiqkItoF"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --confstr 1>"/tmp/check_all_args.eiy0rRYXGM" 2>"/tmp/check_all_args.lMAiqkItoF"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --confstr' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -N 1>"/tmp/check_all_args.ns68jtRS4T" 2>"/tmp/check_all_args.uWiNJAY6sH"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -N 1>"/tmp/check_all_args.ns68jtRS4T" 2>"/tmp/check_all_args.uWiNJAY6sH"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -N 1>"/tmp/check_all_args.ns68jtRS4T" 2>"/tmp/check_all_args.uWiNJAY6sH"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -N' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --network 1>"/tmp/check_all_args.Ex9FPXTl56" 2>"/tmp/check_all_args.2qGkjdnyXl"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --network 1>"/tmp/check_all_args.Ex9FPXTl56" 2>"/tmp/check_all_args.2qGkjdnyXl"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --network 1>"/tmp/check_all_args.Ex9FPXTl56" 2>"/tmp/check_all_args.2qGkjdnyXl"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --network' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -o 1>"/tmp/check_all_args.luCRLVAD51" 2>"/tmp/check_all_args.pZ5PaRZsmj"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -o 1>"/tmp/check_all_args.luCRLVAD51" 2>"/tmp/check_all_args.pZ5PaRZsmj"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -o 1>"/tmp/check_all_args.luCRLVAD51" 2>"/tmp/check_all_args.pZ5PaRZsmj"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -o' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --oom 1>"/tmp/check_all_args.XTtjdd6y28" 2>"/tmp/check_all_args.deyBCy2GRr"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --oom 1>"/tmp/check_all_args.XTtjdd6y28" 2>"/tmp/check_all_args.deyBCy2GRr"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --oom 1>"/tmp/check_all_args.XTtjdd6y28" 2>"/tmp/check_all_args.deyBCy2GRr"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --oom' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -p 1>"/tmp/check_all_args.b7dubMViWN" 2>"/tmp/check_all_args.fx3yr1l6r6"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -p 1>"/tmp/check_all_args.b7dubMViWN" 2>"/tmp/check_all_args.fx3yr1l6r6"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -p 1>"/tmp/check_all_args.b7dubMViWN" 2>"/tmp/check_all_args.fx3yr1l6r6"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -p' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --process 1>"/tmp/check_all_args.H0e29d1DSh" 2>"/tmp/check_all_args.H23W2YsVQe"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --process 1>"/tmp/check_all_args.H0e29d1DSh" 2>"/tmp/check_all_args.H23W2YsVQe"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --process 1>"/tmp/check_all_args.H0e29d1DSh" 2>"/tmp/check_all_args.H23W2YsVQe"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --process' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -P 1>"/tmp/check_all_args.2hFqPep8me" 2>"/tmp/check_all_args.cmwI3yXi4e"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -P 1>"/tmp/check_all_args.2hFqPep8me" 2>"/tmp/check_all_args.cmwI3yXi4e"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -P 1>"/tmp/check_all_args.2hFqPep8me" 2>"/tmp/check_all_args.cmwI3yXi4e"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -P' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --platform 1>"/tmp/check_all_args.ETvMFkXJa2" 2>"/tmp/check_all_args.DVCuJE0CzE"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --platform 1>"/tmp/check_all_args.ETvMFkXJa2" 2>"/tmp/check_all_args.DVCuJE0CzE"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --platform 1>"/tmp/check_all_args.ETvMFkXJa2" 2>"/tmp/check_all_args.DVCuJE0CzE"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --platform' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -q 1>"/tmp/check_all_args.e4Lqjke2t6" 2>"/tmp/check_all_args.IuqyWpOYPO"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -q 1>"/tmp/check_all_args.e4Lqjke2t6" 2>"/tmp/check_all_args.IuqyWpOYPO"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -q 1>"/tmp/check_all_args.e4Lqjke2t6" 2>"/tmp/check_all_args.IuqyWpOYPO"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -q' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --time 1>"/tmp/check_all_args.JPSCDR9GJ3" 2>"/tmp/check_all_args.gpgXzoek17"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --time 1>"/tmp/check_all_args.JPSCDR9GJ3" 2>"/tmp/check_all_args.gpgXzoek17"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --time 1>"/tmp/check_all_args.JPSCDR9GJ3" 2>"/tmp/check_all_args.gpgXzoek17"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --time' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -r 1>"/tmp/check_all_args.e8AWxs5Lzu" 2>"/tmp/check_all_args.N3bfmk67JY"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -r 1>"/tmp/check_all_args.e8AWxs5Lzu" 2>"/tmp/check_all_args.N3bfmk67JY"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -r 1>"/tmp/check_all_args.e8AWxs5Lzu" 2>"/tmp/check_all_args.N3bfmk67JY"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -r' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --ranges 1>"/tmp/check_all_args.a1zwaraN2Y" 2>"/tmp/check_all_args.Po3F8m3ZVQ"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --ranges 1>"/tmp/check_all_args.a1zwaraN2Y" 2>"/tmp/check_all_args.Po3F8m3ZVQ"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --ranges 1>"/tmp/check_all_args.a1zwaraN2Y" 2>"/tmp/check_all_args.Po3F8m3ZVQ"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --ranges' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -s 1>"/tmp/check_all_args.dlco8UUw2m" 2>"/tmp/check_all_args.d8iOB6ZlB5"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -s 1>"/tmp/check_all_args.dlco8UUw2m" 2>"/tmp/check_all_args.d8iOB6ZlB5"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -s 1>"/tmp/check_all_args.dlco8UUw2m" 2>"/tmp/check_all_args.d8iOB6ZlB5"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -s' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --signals 1>"/tmp/check_all_args.f4nCPjG9CG" 2>"/tmp/check_all_args.q2kF7p09Iv"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --signals 1>"/tmp/check_all_args.f4nCPjG9CG" 2>"/tmp/check_all_args.q2kF7p09Iv"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --signals 1>"/tmp/check_all_args.f4nCPjG9CG" 2>"/tmp/check_all_args.q2kF7p09Iv"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --signals' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -S 1>"/tmp/check_all_args.ILSl5Jncwn" 2>"/tmp/check_all_args.Nr2tGG9xRd"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -S 1>"/tmp/check_all_args.ILSl5Jncwn" 2>"/tmp/check_all_args.Nr2tGG9xRd"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -S 1>"/tmp/check_all_args.ILSl5Jncwn" 2>"/tmp/check_all_args.Nr2tGG9xRd"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -S' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --shared-memory 1>"/tmp/check_all_args.3y7LIfoF4A" 2>"/tmp/check_all_args.ftQXdlJ1QX"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --shared-memory 1>"/tmp/check_all_args.3y7LIfoF4A" 2>"/tmp/check_all_args.ftQXdlJ1QX"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --shared-memory 1>"/tmp/check_all_args.3y7LIfoF4A" 2>"/tmp/check_all_args.ftQXdlJ1QX"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --shared-memory' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -t 1>"/tmp/check_all_args.pU1InZN4xS" 2>"/tmp/check_all_args.Xsag1nag7Z"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -t 1>"/tmp/check_all_args.pU1InZN4xS" 2>"/tmp/check_all_args.Xsag1nag7Z"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -t 1>"/tmp/check_all_args.pU1InZN4xS" 2>"/tmp/check_all_args.Xsag1nag7Z"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -t' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --tty 1>"/tmp/check_all_args.iSHSFsbQer" 2>"/tmp/check_all_args.PQydNt7y87"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --tty 1>"/tmp/check_all_args.iSHSFsbQer" 2>"/tmp/check_all_args.PQydNt7y87"' 278s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --tty 1>"/tmp/check_all_args.iSHSFsbQer" 2>"/tmp/check_all_args.PQydNt7y87"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --tty' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -T 1>"/tmp/check_all_args.fsDPsNTVKX" 2>"/tmp/check_all_args.GWibcRnBbk"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -T 1>"/tmp/check_all_args.fsDPsNTVKX" 2>"/tmp/check_all_args.GWibcRnBbk"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -T 1>"/tmp/check_all_args.fsDPsNTVKX" 2>"/tmp/check_all_args.GWibcRnBbk"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -T' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --threads 1>"/tmp/check_all_args.SXZtK8FnQK" 2>"/tmp/check_all_args.IRRkMGYNZ3"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --threads 1>"/tmp/check_all_args.SXZtK8FnQK" 2>"/tmp/check_all_args.IRRkMGYNZ3"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --threads 1>"/tmp/check_all_args.SXZtK8FnQK" 2>"/tmp/check_all_args.IRRkMGYNZ3"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --threads' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -u 1>"/tmp/check_all_args.UuhT0BI85t" 2>"/tmp/check_all_args.25e6ofYzHx"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -u 1>"/tmp/check_all_args.UuhT0BI85t" 2>"/tmp/check_all_args.25e6ofYzHx"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -u 1>"/tmp/check_all_args.UuhT0BI85t" 2>"/tmp/check_all_args.25e6ofYzHx"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -u' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --stat 1>"/tmp/check_all_args.evdRAMgDQV" 2>"/tmp/check_all_args.rMaStCdXQl"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --stat 1>"/tmp/check_all_args.evdRAMgDQV" 2>"/tmp/check_all_args.rMaStCdXQl"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --stat 1>"/tmp/check_all_args.evdRAMgDQV" 2>"/tmp/check_all_args.rMaStCdXQl"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --stat' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -U 1>"/tmp/check_all_args.kUe5NYvREs" 2>"/tmp/check_all_args.7RtZuyg7RI"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -U 1>"/tmp/check_all_args.kUe5NYvREs" 2>"/tmp/check_all_args.7RtZuyg7RI"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -U 1>"/tmp/check_all_args.kUe5NYvREs" 2>"/tmp/check_all_args.7RtZuyg7RI"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -U' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --rusage 1>"/tmp/check_all_args.GmgNuWq8iX" 2>"/tmp/check_all_args.MuhaTcxwOL"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --rusage 1>"/tmp/check_all_args.GmgNuWq8iX" 2>"/tmp/check_all_args.MuhaTcxwOL"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --rusage 1>"/tmp/check_all_args.GmgNuWq8iX" 2>"/tmp/check_all_args.MuhaTcxwOL"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --rusage' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -v 1>"/tmp/check_all_args.S1S6EWfKdw" 2>"/tmp/check_all_args.PxB5aW6KE3"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -v 1>"/tmp/check_all_args.S1S6EWfKdw" 2>"/tmp/check_all_args.PxB5aW6KE3"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -v 1>"/tmp/check_all_args.S1S6EWfKdw" 2>"/tmp/check_all_args.PxB5aW6KE3"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -v' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --version 1>"/tmp/check_all_args.Lycjkl6fkv" 2>"/tmp/check_all_args.NTxjScUpCu"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --version 1>"/tmp/check_all_args.Lycjkl6fkv" 2>"/tmp/check_all_args.NTxjScUpCu"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --version 1>"/tmp/check_all_args.Lycjkl6fkv" 2>"/tmp/check_all_args.NTxjScUpCu"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --version' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -w 1>"/tmp/check_all_args.FR8AtyiaU5" 2>"/tmp/check_all_args.weRefJgZ2n"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -w 1>"/tmp/check_all_args.FR8AtyiaU5" 2>"/tmp/check_all_args.weRefJgZ2n"' 279s WARNING: 279s WARNING: 279s WARNING: Found extra capability procenv is not aware of (number 40) 279s WARNING: 279s WARNING: Note that this warning will appear if procenv is built on a 279s WARNING: system which is running a newer kernel than the 279s WARNING: development environment assumes (for example if built in a 279s WARNING: chroot for a back-level release of ubuntu) 279s WARNING: 279s WARNING: Please check for a newer version of procenv, 279s WARNING: build on a newer system, or raise a bug at: 279s WARNING: 279s WARNING: https://github.com/jamesodhunt/procenv 279s WARNING: 279s WARNING: 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -w 1>"/tmp/check_all_args.FR8AtyiaU5" 2>"/tmp/check_all_args.weRefJgZ2n"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -w' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --capabilities 1>"/tmp/check_all_args.V6bPGvR0vm" 2>"/tmp/check_all_args.hdfHrvYea4"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --capabilities 1>"/tmp/check_all_args.V6bPGvR0vm" 2>"/tmp/check_all_args.hdfHrvYea4"' 279s WARNING: 279s WARNING: 279s WARNING: Found extra capability procenv is not aware of (number 40) 279s WARNING: 279s WARNING: Note that this warning will appear if procenv is built on a 279s WARNING: system which is running a newer kernel than the 279s WARNING: development environment assumes (for example if built in a 279s WARNING: chroot for a back-level release of ubuntu) 279s WARNING: 279s WARNING: Please check for a newer version of procenv, 279s WARNING: build on a newer system, or raise a bug at: 279s WARNING: 279s WARNING: https://github.com/jamesodhunt/procenv 279s WARNING: 279s WARNING: 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --capabilities 1>"/tmp/check_all_args.V6bPGvR0vm" 2>"/tmp/check_all_args.hdfHrvYea4"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --capabilities' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -x 1>"/tmp/check_all_args.19QWechUlZ" 2>"/tmp/check_all_args.oj0nkA7EQm"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -x 1>"/tmp/check_all_args.19QWechUlZ" 2>"/tmp/check_all_args.oj0nkA7EQm"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -x 1>"/tmp/check_all_args.19QWechUlZ" 2>"/tmp/check_all_args.oj0nkA7EQm"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -x' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --pathconf 1>"/tmp/check_all_args.zsxmaldSaM" 2>"/tmp/check_all_args.Vgmve0NVwN"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --pathconf 1>"/tmp/check_all_args.zsxmaldSaM" 2>"/tmp/check_all_args.Vgmve0NVwN"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --pathconf 1>"/tmp/check_all_args.zsxmaldSaM" 2>"/tmp/check_all_args.Vgmve0NVwN"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --pathconf' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -y 1>"/tmp/check_all_args.YHoqwuElf8" 2>"/tmp/check_all_args.vYMVG0JudE"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -y 1>"/tmp/check_all_args.YHoqwuElf8" 2>"/tmp/check_all_args.vYMVG0JudE"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -y 1>"/tmp/check_all_args.YHoqwuElf8" 2>"/tmp/check_all_args.vYMVG0JudE"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -y' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --sysconf 1>"/tmp/check_all_args.BEvMX8BxUC" 2>"/tmp/check_all_args.8xjHlYRPke"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --sysconf 1>"/tmp/check_all_args.BEvMX8BxUC" 2>"/tmp/check_all_args.8xjHlYRPke"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --sysconf 1>"/tmp/check_all_args.BEvMX8BxUC" 2>"/tmp/check_all_args.8xjHlYRPke"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --sysconf' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -Y 1>"/tmp/check_all_args.oVe2DJ1JZm" 2>"/tmp/check_all_args.hQBqrJO5ur"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -Y 1>"/tmp/check_all_args.oVe2DJ1JZm" 2>"/tmp/check_all_args.hQBqrJO5ur"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -Y 1>"/tmp/check_all_args.oVe2DJ1JZm" 2>"/tmp/check_all_args.hQBqrJO5ur"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -Y' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --memory 1>"/tmp/check_all_args.sjQaVUYi94" 2>"/tmp/check_all_args.B6nPG8dyKN"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --memory 1>"/tmp/check_all_args.sjQaVUYi94" 2>"/tmp/check_all_args.B6nPG8dyKN"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --memory 1>"/tmp/check_all_args.sjQaVUYi94" 2>"/tmp/check_all_args.B6nPG8dyKN"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --memory' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -z 1>"/tmp/check_all_args.BAmDtfnd9u" 2>"/tmp/check_all_args.8pSbyBAaW1"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -z 1>"/tmp/check_all_args.BAmDtfnd9u" 2>"/tmp/check_all_args.8pSbyBAaW1"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -z 1>"/tmp/check_all_args.BAmDtfnd9u" 2>"/tmp/check_all_args.8pSbyBAaW1"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -z' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --timezone 1>"/tmp/check_all_args.AlYv6Grrmz" 2>"/tmp/check_all_args.3NXGqFRKZ9"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --timezone 1>"/tmp/check_all_args.AlYv6Grrmz" 2>"/tmp/check_all_args.3NXGqFRKZ9"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --timezone 1>"/tmp/check_all_args.AlYv6Grrmz" 2>"/tmp/check_all_args.3NXGqFRKZ9"' 279s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --timezone' 279s INFO:LANG=C:LC_ALL=C: Ensure ../src/procenv runs with no errors 279s INFO:LANG=C:LC_ALL=C: Ensuring output is sorted by section 279s INFO:LANG=C:LC_ALL=C: Ensure --file= works 279s INFO:LANG=C:LC_ALL=C: Ensure running multiple '--file= --version' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--file-append --file= --version' works 279s INFO:LANG=C:LC_ALL=C: Ensure --output=stdout works 279s INFO:LANG=C:LC_ALL=C: Ensure --output=stderr works 279s INFO:LANG=C:LC_ALL=C: Ensure --exec works (with no previous arguments) 279s INFO:LANG=C:LC_ALL=C: Ensure '--version --exec' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--exec' can exec ../src/procenv 279s INFO:LANG=C:LC_ALL=C: Ensure 'PROCENV_EXEC' and 'PROCENV_FILE' variables work 279s INFO:LANG=C:LC_ALL=C: Ensure '--format=text' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--format=crumb' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--indent-char=.' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--indent-char=;' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--indent-char=12' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--indent-char=123' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--indent-char=1234' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--separator=.' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--separator=;' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--separator=12' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--separator=123' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--separator=1234' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--crumb-separator=.' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--crumb-separator=;' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--crumb-separator=12' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--crumb-separator=123' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--crumb-separator=1234' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--format=xml' works 279s INFO:LANG=C:LC_ALL=C: Ensure '--format=json' works 279s INFO:LANG=C:LC_ALL=C: Ensure non-display option ('--crumb-separator=.') disallowed after display option ('--meta') 279s INFO:LANG=C:LC_ALL=C: Ensure non-display option ('--file=/tmp/foo') disallowed after display option ('--meta') 279s INFO:LANG=C:LC_ALL=C: Ensure non-display option ('--format=crumb') disallowed after display option ('--meta') 279s INFO:LANG=C:LC_ALL=C: Ensure non-display option ('--indent=7') disallowed after display option ('--meta') 279s INFO:LANG=C:LC_ALL=C: Ensure non-display option ('--indent-char=X') disallowed after display option ('--meta') 279s INFO:LANG=C:LC_ALL=C: Ensure non-display option ('--separator=X') disallowed after display option ('--meta') 279s INFO:LANG=C:LC_ALL=C: Ensure an empty environment is tolerated 279s INFO:LANG=C:LC_ALL=C: Not testing with locale language C.UTF-8 279s INFO:LANG=POSIX:LC_ALL=POSIX: Running procenv version 0.51 tests for language 'POSIX' 279s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--help' works 279s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure all documented options produce output 279s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -a 1>"/tmp/check_all_args.1HC3Y32Bk2" 2>"/tmp/check_all_args.vQPCPTPKcb"' 279s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -a 1>"/tmp/check_all_args.1HC3Y32Bk2" 2>"/tmp/check_all_args.vQPCPTPKcb"' 279s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -a 1>"/tmp/check_all_args.1HC3Y32Bk2" 2>"/tmp/check_all_args.vQPCPTPKcb"' 279s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -a' 279s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --meta 1>"/tmp/check_all_args.0IUMNXQQGr" 2>"/tmp/check_all_args.iCTIAgn1Or"' 279s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --meta 1>"/tmp/check_all_args.0IUMNXQQGr" 2>"/tmp/check_all_args.iCTIAgn1Or"' 279s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --meta 1>"/tmp/check_all_args.0IUMNXQQGr" 2>"/tmp/check_all_args.iCTIAgn1Or"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --meta' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -A 1>"/tmp/check_all_args.KapFk0bHt3" 2>"/tmp/check_all_args.YfDAZqQDOv"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -A 1>"/tmp/check_all_args.KapFk0bHt3" 2>"/tmp/check_all_args.YfDAZqQDOv"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -A 1>"/tmp/check_all_args.KapFk0bHt3" 2>"/tmp/check_all_args.YfDAZqQDOv"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -A' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --arguments 1>"/tmp/check_all_args.O3sRGvRCP8" 2>"/tmp/check_all_args.y7WQPgDLA6"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --arguments 1>"/tmp/check_all_args.O3sRGvRCP8" 2>"/tmp/check_all_args.y7WQPgDLA6"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --arguments 1>"/tmp/check_all_args.O3sRGvRCP8" 2>"/tmp/check_all_args.y7WQPgDLA6"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --arguments' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -b 1>"/tmp/check_all_args.lWdtuMOeIv" 2>"/tmp/check_all_args.gQGt80575Z"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -b 1>"/tmp/check_all_args.lWdtuMOeIv" 2>"/tmp/check_all_args.gQGt80575Z"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -b 1>"/tmp/check_all_args.lWdtuMOeIv" 2>"/tmp/check_all_args.gQGt80575Z"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -b' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --libs 1>"/tmp/check_all_args.Syj3yWZM1V" 2>"/tmp/check_all_args.7PUaonHCJ9"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --libs 1>"/tmp/check_all_args.Syj3yWZM1V" 2>"/tmp/check_all_args.7PUaonHCJ9"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --libs 1>"/tmp/check_all_args.Syj3yWZM1V" 2>"/tmp/check_all_args.7PUaonHCJ9"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --libs' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -B 1>"/tmp/check_all_args.n4Rb7XuBYW" 2>"/tmp/check_all_args.AiDbO2uQxS"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -B 1>"/tmp/check_all_args.n4Rb7XuBYW" 2>"/tmp/check_all_args.AiDbO2uQxS"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -B 1>"/tmp/check_all_args.n4Rb7XuBYW" 2>"/tmp/check_all_args.AiDbO2uQxS"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -B' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --libc 1>"/tmp/check_all_args.Dvxf1PByF6" 2>"/tmp/check_all_args.IsNLzeoje4"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --libc 1>"/tmp/check_all_args.Dvxf1PByF6" 2>"/tmp/check_all_args.IsNLzeoje4"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --libc 1>"/tmp/check_all_args.Dvxf1PByF6" 2>"/tmp/check_all_args.IsNLzeoje4"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --libc' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -c 1>"/tmp/check_all_args.NwNTSp4VCl" 2>"/tmp/check_all_args.quHc7w6b4p"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -c 1>"/tmp/check_all_args.NwNTSp4VCl" 2>"/tmp/check_all_args.quHc7w6b4p"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -c 1>"/tmp/check_all_args.NwNTSp4VCl" 2>"/tmp/check_all_args.quHc7w6b4p"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -c' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --cgroups 1>"/tmp/check_all_args.IE3aU2laLk" 2>"/tmp/check_all_args.MD5S8uM6Yh"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --cgroups 1>"/tmp/check_all_args.IE3aU2laLk" 2>"/tmp/check_all_args.MD5S8uM6Yh"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --cgroups 1>"/tmp/check_all_args.IE3aU2laLk" 2>"/tmp/check_all_args.MD5S8uM6Yh"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --cgroups' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -C 1>"/tmp/check_all_args.am1BGJgQwf" 2>"/tmp/check_all_args.U9g1m0UKBE"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -C 1>"/tmp/check_all_args.am1BGJgQwf" 2>"/tmp/check_all_args.U9g1m0UKBE"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -C 1>"/tmp/check_all_args.am1BGJgQwf" 2>"/tmp/check_all_args.U9g1m0UKBE"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -C' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --cpu 1>"/tmp/check_all_args.8f1J0TyxkO" 2>"/tmp/check_all_args.gTAymJUCwV"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --cpu 1>"/tmp/check_all_args.8f1J0TyxkO" 2>"/tmp/check_all_args.gTAymJUCwV"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --cpu 1>"/tmp/check_all_args.8f1J0TyxkO" 2>"/tmp/check_all_args.gTAymJUCwV"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --cpu' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -d 1>"/tmp/check_all_args.HANvSKJ86D" 2>"/tmp/check_all_args.HNbhdHDEoa"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -d 1>"/tmp/check_all_args.HANvSKJ86D" 2>"/tmp/check_all_args.HNbhdHDEoa"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -d 1>"/tmp/check_all_args.HANvSKJ86D" 2>"/tmp/check_all_args.HNbhdHDEoa"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -d' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --compiler 1>"/tmp/check_all_args.W5EfklfmZi" 2>"/tmp/check_all_args.4E46jkfCax"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --compiler 1>"/tmp/check_all_args.W5EfklfmZi" 2>"/tmp/check_all_args.4E46jkfCax"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --compiler 1>"/tmp/check_all_args.W5EfklfmZi" 2>"/tmp/check_all_args.4E46jkfCax"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --compiler' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -e 1>"/tmp/check_all_args.6N3giE90nE" 2>"/tmp/check_all_args.3Xsl2fsxAn"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -e 1>"/tmp/check_all_args.6N3giE90nE" 2>"/tmp/check_all_args.3Xsl2fsxAn"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -e 1>"/tmp/check_all_args.6N3giE90nE" 2>"/tmp/check_all_args.3Xsl2fsxAn"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -e' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --environment 1>"/tmp/check_all_args.f2tOuA66UO" 2>"/tmp/check_all_args.hPnsys2DsT"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --environment 1>"/tmp/check_all_args.f2tOuA66UO" 2>"/tmp/check_all_args.hPnsys2DsT"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --environment 1>"/tmp/check_all_args.f2tOuA66UO" 2>"/tmp/check_all_args.hPnsys2DsT"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --environment' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -E 1>"/tmp/check_all_args.zIjo1u5vXO" 2>"/tmp/check_all_args.nNHo7SJW97"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -E 1>"/tmp/check_all_args.zIjo1u5vXO" 2>"/tmp/check_all_args.nNHo7SJW97"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -E 1>"/tmp/check_all_args.zIjo1u5vXO" 2>"/tmp/check_all_args.nNHo7SJW97"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -E' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --semaphores 1>"/tmp/check_all_args.2HE4ibMKiK" 2>"/tmp/check_all_args.hYkoyiy6Rg"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --semaphores 1>"/tmp/check_all_args.2HE4ibMKiK" 2>"/tmp/check_all_args.hYkoyiy6Rg"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --semaphores 1>"/tmp/check_all_args.2HE4ibMKiK" 2>"/tmp/check_all_args.hYkoyiy6Rg"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --semaphores' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -f 1>"/tmp/check_all_args.UGPxw1FN25" 2>"/tmp/check_all_args.AeZE3k0h5k"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -f 1>"/tmp/check_all_args.UGPxw1FN25" 2>"/tmp/check_all_args.AeZE3k0h5k"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -f 1>"/tmp/check_all_args.UGPxw1FN25" 2>"/tmp/check_all_args.AeZE3k0h5k"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -f' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --fds 1>"/tmp/check_all_args.vncbA1lWYb" 2>"/tmp/check_all_args.xzluDSkf4c"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --fds 1>"/tmp/check_all_args.vncbA1lWYb" 2>"/tmp/check_all_args.xzluDSkf4c"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --fds 1>"/tmp/check_all_args.vncbA1lWYb" 2>"/tmp/check_all_args.xzluDSkf4c"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --fds' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -F 1>"/tmp/check_all_args.5zPNt4LFAa" 2>"/tmp/check_all_args.DTeF4l0Ix7"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -F 1>"/tmp/check_all_args.5zPNt4LFAa" 2>"/tmp/check_all_args.DTeF4l0Ix7"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -F 1>"/tmp/check_all_args.5zPNt4LFAa" 2>"/tmp/check_all_args.DTeF4l0Ix7"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -F' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --namespaces 1>"/tmp/check_all_args.AEHUBkGIao" 2>"/tmp/check_all_args.8IjuUHRWRS"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --namespaces 1>"/tmp/check_all_args.AEHUBkGIao" 2>"/tmp/check_all_args.8IjuUHRWRS"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --namespaces 1>"/tmp/check_all_args.AEHUBkGIao" 2>"/tmp/check_all_args.8IjuUHRWRS"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --namespaces' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -g 1>"/tmp/check_all_args.3tg0VzupGa" 2>"/tmp/check_all_args.aEyKS0JuOR"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -g 1>"/tmp/check_all_args.3tg0VzupGa" 2>"/tmp/check_all_args.aEyKS0JuOR"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -g 1>"/tmp/check_all_args.3tg0VzupGa" 2>"/tmp/check_all_args.aEyKS0JuOR"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -g' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --sizeof 1>"/tmp/check_all_args.cXomxRRm4F" 2>"/tmp/check_all_args.BajlX7dJU1"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --sizeof 1>"/tmp/check_all_args.cXomxRRm4F" 2>"/tmp/check_all_args.BajlX7dJU1"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --sizeof 1>"/tmp/check_all_args.cXomxRRm4F" 2>"/tmp/check_all_args.BajlX7dJU1"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --sizeof' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -i 1>"/tmp/check_all_args.y4Ob5OrvTn" 2>"/tmp/check_all_args.GAk8Nmyfz5"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -i 1>"/tmp/check_all_args.y4Ob5OrvTn" 2>"/tmp/check_all_args.GAk8Nmyfz5"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -i 1>"/tmp/check_all_args.y4Ob5OrvTn" 2>"/tmp/check_all_args.GAk8Nmyfz5"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -i' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --misc 1>"/tmp/check_all_args.b0Rxq8cJl3" 2>"/tmp/check_all_args.kWxP06xlcv"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --misc 1>"/tmp/check_all_args.b0Rxq8cJl3" 2>"/tmp/check_all_args.kWxP06xlcv"' 280s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --misc 1>"/tmp/check_all_args.b0Rxq8cJl3" 2>"/tmp/check_all_args.kWxP06xlcv"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --misc' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -j 1>"/tmp/check_all_args.6UjRR5pret" 2>"/tmp/check_all_args.8jDYzTtKsz"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -j 1>"/tmp/check_all_args.6UjRR5pret" 2>"/tmp/check_all_args.8jDYzTtKsz"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -j 1>"/tmp/check_all_args.6UjRR5pret" 2>"/tmp/check_all_args.8jDYzTtKsz"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -j' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --uname 1>"/tmp/check_all_args.7a3TC9MJFQ" 2>"/tmp/check_all_args.aT8FgGvEIt"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --uname 1>"/tmp/check_all_args.7a3TC9MJFQ" 2>"/tmp/check_all_args.aT8FgGvEIt"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --uname 1>"/tmp/check_all_args.7a3TC9MJFQ" 2>"/tmp/check_all_args.aT8FgGvEIt"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --uname' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -k 1>"/tmp/check_all_args.5DjTyMwjzB" 2>"/tmp/check_all_args.7VZYRYbR60"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -k 1>"/tmp/check_all_args.5DjTyMwjzB" 2>"/tmp/check_all_args.7VZYRYbR60"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -k 1>"/tmp/check_all_args.5DjTyMwjzB" 2>"/tmp/check_all_args.7VZYRYbR60"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -k' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --clocks 1>"/tmp/check_all_args.7Jd7VpxFKL" 2>"/tmp/check_all_args.JmkYbgZX9N"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --clocks 1>"/tmp/check_all_args.7Jd7VpxFKL" 2>"/tmp/check_all_args.JmkYbgZX9N"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --clocks 1>"/tmp/check_all_args.7Jd7VpxFKL" 2>"/tmp/check_all_args.JmkYbgZX9N"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --clocks' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -l 1>"/tmp/check_all_args.yncPF7uGA6" 2>"/tmp/check_all_args.SvsLALWBDE"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -l 1>"/tmp/check_all_args.yncPF7uGA6" 2>"/tmp/check_all_args.SvsLALWBDE"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -l 1>"/tmp/check_all_args.yncPF7uGA6" 2>"/tmp/check_all_args.SvsLALWBDE"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -l' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --limits 1>"/tmp/check_all_args.mu2Vk7Aiay" 2>"/tmp/check_all_args.Jdzn6yYhSb"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --limits 1>"/tmp/check_all_args.mu2Vk7Aiay" 2>"/tmp/check_all_args.Jdzn6yYhSb"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --limits 1>"/tmp/check_all_args.mu2Vk7Aiay" 2>"/tmp/check_all_args.Jdzn6yYhSb"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --limits' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -L 1>"/tmp/check_all_args.25dIgg3w8n" 2>"/tmp/check_all_args.UCIDLTnwsw"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -L 1>"/tmp/check_all_args.25dIgg3w8n" 2>"/tmp/check_all_args.UCIDLTnwsw"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -L 1>"/tmp/check_all_args.25dIgg3w8n" 2>"/tmp/check_all_args.UCIDLTnwsw"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -L' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --locale 1>"/tmp/check_all_args.OX5AcinD59" 2>"/tmp/check_all_args.LOY6G2bdsx"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --locale 1>"/tmp/check_all_args.OX5AcinD59" 2>"/tmp/check_all_args.LOY6G2bdsx"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --locale 1>"/tmp/check_all_args.OX5AcinD59" 2>"/tmp/check_all_args.LOY6G2bdsx"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --locale' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -m 1>"/tmp/check_all_args.Cn03FbEiJr" 2>"/tmp/check_all_args.VaM9862xJo"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -m 1>"/tmp/check_all_args.Cn03FbEiJr" 2>"/tmp/check_all_args.VaM9862xJo"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -m 1>"/tmp/check_all_args.Cn03FbEiJr" 2>"/tmp/check_all_args.VaM9862xJo"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -m' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --mounts 1>"/tmp/check_all_args.X7hNfPGG8U" 2>"/tmp/check_all_args.AnrXV57MWV"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --mounts 1>"/tmp/check_all_args.X7hNfPGG8U" 2>"/tmp/check_all_args.AnrXV57MWV"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --mounts 1>"/tmp/check_all_args.X7hNfPGG8U" 2>"/tmp/check_all_args.AnrXV57MWV"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --mounts' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -M 1>"/tmp/check_all_args.yhPRahmw8i" 2>"/tmp/check_all_args.804rFbao3A"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -M 1>"/tmp/check_all_args.yhPRahmw8i" 2>"/tmp/check_all_args.804rFbao3A"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -M 1>"/tmp/check_all_args.yhPRahmw8i" 2>"/tmp/check_all_args.804rFbao3A"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -M' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --message-queues 1>"/tmp/check_all_args.eLUrVrLsdM" 2>"/tmp/check_all_args.SYUf9Onq3m"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --message-queues 1>"/tmp/check_all_args.eLUrVrLsdM" 2>"/tmp/check_all_args.SYUf9Onq3m"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --message-queues 1>"/tmp/check_all_args.eLUrVrLsdM" 2>"/tmp/check_all_args.SYUf9Onq3m"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --message-queues' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -n 1>"/tmp/check_all_args.J1thA28jyo" 2>"/tmp/check_all_args.JK9WZOmQym"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -n 1>"/tmp/check_all_args.J1thA28jyo" 2>"/tmp/check_all_args.JK9WZOmQym"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -n 1>"/tmp/check_all_args.J1thA28jyo" 2>"/tmp/check_all_args.JK9WZOmQym"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -n' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --confstr 1>"/tmp/check_all_args.JpV79zNvy0" 2>"/tmp/check_all_args.GiKw4SKI5i"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --confstr 1>"/tmp/check_all_args.JpV79zNvy0" 2>"/tmp/check_all_args.GiKw4SKI5i"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --confstr 1>"/tmp/check_all_args.JpV79zNvy0" 2>"/tmp/check_all_args.GiKw4SKI5i"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --confstr' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -N 1>"/tmp/check_all_args.f3Acn1wyOg" 2>"/tmp/check_all_args.IrCo3QZqVU"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -N 1>"/tmp/check_all_args.f3Acn1wyOg" 2>"/tmp/check_all_args.IrCo3QZqVU"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -N 1>"/tmp/check_all_args.f3Acn1wyOg" 2>"/tmp/check_all_args.IrCo3QZqVU"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -N' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --network 1>"/tmp/check_all_args.oZViqnIXJ2" 2>"/tmp/check_all_args.7QMV966ATM"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --network 1>"/tmp/check_all_args.oZViqnIXJ2" 2>"/tmp/check_all_args.7QMV966ATM"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --network 1>"/tmp/check_all_args.oZViqnIXJ2" 2>"/tmp/check_all_args.7QMV966ATM"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --network' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -o 1>"/tmp/check_all_args.iYsYUW65dP" 2>"/tmp/check_all_args.bk2KW8Fy8L"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -o 1>"/tmp/check_all_args.iYsYUW65dP" 2>"/tmp/check_all_args.bk2KW8Fy8L"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -o 1>"/tmp/check_all_args.iYsYUW65dP" 2>"/tmp/check_all_args.bk2KW8Fy8L"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -o' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --oom 1>"/tmp/check_all_args.e5Q2VRx8rR" 2>"/tmp/check_all_args.ZiN5tgB5al"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --oom 1>"/tmp/check_all_args.e5Q2VRx8rR" 2>"/tmp/check_all_args.ZiN5tgB5al"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --oom 1>"/tmp/check_all_args.e5Q2VRx8rR" 2>"/tmp/check_all_args.ZiN5tgB5al"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --oom' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -p 1>"/tmp/check_all_args.sYNT31JlnO" 2>"/tmp/check_all_args.tiPvazmKyz"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -p 1>"/tmp/check_all_args.sYNT31JlnO" 2>"/tmp/check_all_args.tiPvazmKyz"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -p 1>"/tmp/check_all_args.sYNT31JlnO" 2>"/tmp/check_all_args.tiPvazmKyz"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -p' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --process 1>"/tmp/check_all_args.WScDLZz411" 2>"/tmp/check_all_args.M1wiCBMlC5"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --process 1>"/tmp/check_all_args.WScDLZz411" 2>"/tmp/check_all_args.M1wiCBMlC5"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --process 1>"/tmp/check_all_args.WScDLZz411" 2>"/tmp/check_all_args.M1wiCBMlC5"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --process' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -P 1>"/tmp/check_all_args.uqMn3RkX00" 2>"/tmp/check_all_args.E0elvoz2RF"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -P 1>"/tmp/check_all_args.uqMn3RkX00" 2>"/tmp/check_all_args.E0elvoz2RF"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -P 1>"/tmp/check_all_args.uqMn3RkX00" 2>"/tmp/check_all_args.E0elvoz2RF"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -P' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --platform 1>"/tmp/check_all_args.73pBOthJex" 2>"/tmp/check_all_args.WnfIDNHQr7"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --platform 1>"/tmp/check_all_args.73pBOthJex" 2>"/tmp/check_all_args.WnfIDNHQr7"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --platform 1>"/tmp/check_all_args.73pBOthJex" 2>"/tmp/check_all_args.WnfIDNHQr7"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --platform' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -q 1>"/tmp/check_all_args.pOpsISficB" 2>"/tmp/check_all_args.54kurbibM2"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -q 1>"/tmp/check_all_args.pOpsISficB" 2>"/tmp/check_all_args.54kurbibM2"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -q 1>"/tmp/check_all_args.pOpsISficB" 2>"/tmp/check_all_args.54kurbibM2"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -q' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --time 1>"/tmp/check_all_args.TTwrnbN7VA" 2>"/tmp/check_all_args.Q7qUyegfwb"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --time 1>"/tmp/check_all_args.TTwrnbN7VA" 2>"/tmp/check_all_args.Q7qUyegfwb"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --time 1>"/tmp/check_all_args.TTwrnbN7VA" 2>"/tmp/check_all_args.Q7qUyegfwb"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --time' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -r 1>"/tmp/check_all_args.qKVY8fbmNB" 2>"/tmp/check_all_args.qExHxdb1Py"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -r 1>"/tmp/check_all_args.qKVY8fbmNB" 2>"/tmp/check_all_args.qExHxdb1Py"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -r 1>"/tmp/check_all_args.qKVY8fbmNB" 2>"/tmp/check_all_args.qExHxdb1Py"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -r' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --ranges 1>"/tmp/check_all_args.JdeKhJQLyw" 2>"/tmp/check_all_args.D3EYxy8lKr"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --ranges 1>"/tmp/check_all_args.JdeKhJQLyw" 2>"/tmp/check_all_args.D3EYxy8lKr"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --ranges 1>"/tmp/check_all_args.JdeKhJQLyw" 2>"/tmp/check_all_args.D3EYxy8lKr"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --ranges' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -s 1>"/tmp/check_all_args.EHJ3FyzJAn" 2>"/tmp/check_all_args.ELEAqZglzL"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -s 1>"/tmp/check_all_args.EHJ3FyzJAn" 2>"/tmp/check_all_args.ELEAqZglzL"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -s 1>"/tmp/check_all_args.EHJ3FyzJAn" 2>"/tmp/check_all_args.ELEAqZglzL"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -s' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --signals 1>"/tmp/check_all_args.elNZDhWsJK" 2>"/tmp/check_all_args.Wjv4axKl5L"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --signals 1>"/tmp/check_all_args.elNZDhWsJK" 2>"/tmp/check_all_args.Wjv4axKl5L"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --signals 1>"/tmp/check_all_args.elNZDhWsJK" 2>"/tmp/check_all_args.Wjv4axKl5L"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --signals' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -S 1>"/tmp/check_all_args.WiBCFP5tfh" 2>"/tmp/check_all_args.7YI2hgyYuT"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -S 1>"/tmp/check_all_args.WiBCFP5tfh" 2>"/tmp/check_all_args.7YI2hgyYuT"' 281s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -S 1>"/tmp/check_all_args.WiBCFP5tfh" 2>"/tmp/check_all_args.7YI2hgyYuT"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -S' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --shared-memory 1>"/tmp/check_all_args.wO5NHjqNr6" 2>"/tmp/check_all_args.oTeSA3wJ9V"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --shared-memory 1>"/tmp/check_all_args.wO5NHjqNr6" 2>"/tmp/check_all_args.oTeSA3wJ9V"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --shared-memory 1>"/tmp/check_all_args.wO5NHjqNr6" 2>"/tmp/check_all_args.oTeSA3wJ9V"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --shared-memory' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -t 1>"/tmp/check_all_args.iMWJqSBFfH" 2>"/tmp/check_all_args.UU7R1NOGss"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -t 1>"/tmp/check_all_args.iMWJqSBFfH" 2>"/tmp/check_all_args.UU7R1NOGss"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -t 1>"/tmp/check_all_args.iMWJqSBFfH" 2>"/tmp/check_all_args.UU7R1NOGss"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -t' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --tty 1>"/tmp/check_all_args.xIofSwPfmW" 2>"/tmp/check_all_args.JrdTDc88j6"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --tty 1>"/tmp/check_all_args.xIofSwPfmW" 2>"/tmp/check_all_args.JrdTDc88j6"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --tty 1>"/tmp/check_all_args.xIofSwPfmW" 2>"/tmp/check_all_args.JrdTDc88j6"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --tty' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -T 1>"/tmp/check_all_args.wXawTfOR5B" 2>"/tmp/check_all_args.OoDOYRpZKc"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -T 1>"/tmp/check_all_args.wXawTfOR5B" 2>"/tmp/check_all_args.OoDOYRpZKc"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -T 1>"/tmp/check_all_args.wXawTfOR5B" 2>"/tmp/check_all_args.OoDOYRpZKc"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -T' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --threads 1>"/tmp/check_all_args.Up4uPTELBL" 2>"/tmp/check_all_args.jQB53R48H3"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --threads 1>"/tmp/check_all_args.Up4uPTELBL" 2>"/tmp/check_all_args.jQB53R48H3"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --threads 1>"/tmp/check_all_args.Up4uPTELBL" 2>"/tmp/check_all_args.jQB53R48H3"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --threads' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -u 1>"/tmp/check_all_args.oyD9tp5xXR" 2>"/tmp/check_all_args.tu8ZuRMzj2"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -u 1>"/tmp/check_all_args.oyD9tp5xXR" 2>"/tmp/check_all_args.tu8ZuRMzj2"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -u 1>"/tmp/check_all_args.oyD9tp5xXR" 2>"/tmp/check_all_args.tu8ZuRMzj2"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -u' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --stat 1>"/tmp/check_all_args.VeR2V4xQSb" 2>"/tmp/check_all_args.fRfmVhw1WN"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --stat 1>"/tmp/check_all_args.VeR2V4xQSb" 2>"/tmp/check_all_args.fRfmVhw1WN"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --stat 1>"/tmp/check_all_args.VeR2V4xQSb" 2>"/tmp/check_all_args.fRfmVhw1WN"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --stat' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -U 1>"/tmp/check_all_args.hc2mXfSk0X" 2>"/tmp/check_all_args.rF6NvKCL0O"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -U 1>"/tmp/check_all_args.hc2mXfSk0X" 2>"/tmp/check_all_args.rF6NvKCL0O"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -U 1>"/tmp/check_all_args.hc2mXfSk0X" 2>"/tmp/check_all_args.rF6NvKCL0O"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -U' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --rusage 1>"/tmp/check_all_args.C1T0bRbL5R" 2>"/tmp/check_all_args.q79rv5bc6w"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --rusage 1>"/tmp/check_all_args.C1T0bRbL5R" 2>"/tmp/check_all_args.q79rv5bc6w"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --rusage 1>"/tmp/check_all_args.C1T0bRbL5R" 2>"/tmp/check_all_args.q79rv5bc6w"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --rusage' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -v 1>"/tmp/check_all_args.fGDKYaLRhJ" 2>"/tmp/check_all_args.6OhntAaNm3"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -v 1>"/tmp/check_all_args.fGDKYaLRhJ" 2>"/tmp/check_all_args.6OhntAaNm3"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -v 1>"/tmp/check_all_args.fGDKYaLRhJ" 2>"/tmp/check_all_args.6OhntAaNm3"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -v' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --version 1>"/tmp/check_all_args.PvwLfCQaob" 2>"/tmp/check_all_args.OU8BEozglR"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --version 1>"/tmp/check_all_args.PvwLfCQaob" 2>"/tmp/check_all_args.OU8BEozglR"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --version 1>"/tmp/check_all_args.PvwLfCQaob" 2>"/tmp/check_all_args.OU8BEozglR"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --version' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -w 1>"/tmp/check_all_args.Ya0D2O8umQ" 2>"/tmp/check_all_args.yuv1Xm6ZJN"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -w 1>"/tmp/check_all_args.Ya0D2O8umQ" 2>"/tmp/check_all_args.yuv1Xm6ZJN"' 282s WARNING: 282s WARNING: 282s WARNING: Found extra capability procenv is not aware of (number 40) 282s WARNING: 282s WARNING: Note that this warning will appear if procenv is built on a 282s WARNING: system which is running a newer kernel than the 282s WARNING: development environment assumes (for example if built in a 282s WARNING: chroot for a back-level release of ubuntu) 282s WARNING: 282s WARNING: Please check for a newer version of procenv, 282s WARNING: build on a newer system, or raise a bug at: 282s WARNING: 282s WARNING: https://github.com/jamesodhunt/procenv 282s WARNING: 282s WARNING: 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -w 1>"/tmp/check_all_args.Ya0D2O8umQ" 2>"/tmp/check_all_args.yuv1Xm6ZJN"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -w' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --capabilities 1>"/tmp/check_all_args.snc9pJDPND" 2>"/tmp/check_all_args.VSsTYA0wZg"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --capabilities 1>"/tmp/check_all_args.snc9pJDPND" 2>"/tmp/check_all_args.VSsTYA0wZg"' 282s WARNING: 282s WARNING: 282s WARNING: Found extra capability procenv is not aware of (number 40) 282s WARNING: 282s WARNING: Note that this warning will appear if procenv is built on a 282s WARNING: system which is running a newer kernel than the 282s WARNING: development environment assumes (for example if built in a 282s WARNING: chroot for a back-level release of ubuntu) 282s WARNING: 282s WARNING: Please check for a newer version of procenv, 282s WARNING: build on a newer system, or raise a bug at: 282s WARNING: 282s WARNING: https://github.com/jamesodhunt/procenv 282s WARNING: 282s WARNING: 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --capabilities 1>"/tmp/check_all_args.snc9pJDPND" 2>"/tmp/check_all_args.VSsTYA0wZg"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --capabilities' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -x 1>"/tmp/check_all_args.HI64eQiW2Z" 2>"/tmp/check_all_args.Z7HCiM0sR4"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -x 1>"/tmp/check_all_args.HI64eQiW2Z" 2>"/tmp/check_all_args.Z7HCiM0sR4"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -x 1>"/tmp/check_all_args.HI64eQiW2Z" 2>"/tmp/check_all_args.Z7HCiM0sR4"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -x' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --pathconf 1>"/tmp/check_all_args.W2tj6dQ6Ou" 2>"/tmp/check_all_args.idH8fKXuia"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --pathconf 1>"/tmp/check_all_args.W2tj6dQ6Ou" 2>"/tmp/check_all_args.idH8fKXuia"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --pathconf 1>"/tmp/check_all_args.W2tj6dQ6Ou" 2>"/tmp/check_all_args.idH8fKXuia"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --pathconf' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -y 1>"/tmp/check_all_args.Nf588Mclm7" 2>"/tmp/check_all_args.uTqQEpG6BR"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -y 1>"/tmp/check_all_args.Nf588Mclm7" 2>"/tmp/check_all_args.uTqQEpG6BR"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -y 1>"/tmp/check_all_args.Nf588Mclm7" 2>"/tmp/check_all_args.uTqQEpG6BR"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -y' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --sysconf 1>"/tmp/check_all_args.ABMbYesThx" 2>"/tmp/check_all_args.Nj5jOkXcr7"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --sysconf 1>"/tmp/check_all_args.ABMbYesThx" 2>"/tmp/check_all_args.Nj5jOkXcr7"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --sysconf 1>"/tmp/check_all_args.ABMbYesThx" 2>"/tmp/check_all_args.Nj5jOkXcr7"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --sysconf' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -Y 1>"/tmp/check_all_args.5A1xxKTRvI" 2>"/tmp/check_all_args.AOU5Jif5fa"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -Y 1>"/tmp/check_all_args.5A1xxKTRvI" 2>"/tmp/check_all_args.AOU5Jif5fa"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -Y 1>"/tmp/check_all_args.5A1xxKTRvI" 2>"/tmp/check_all_args.AOU5Jif5fa"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -Y' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --memory 1>"/tmp/check_all_args.d9NkLUBQhU" 2>"/tmp/check_all_args.B40WnYN8mv"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --memory 1>"/tmp/check_all_args.d9NkLUBQhU" 2>"/tmp/check_all_args.B40WnYN8mv"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --memory 1>"/tmp/check_all_args.d9NkLUBQhU" 2>"/tmp/check_all_args.B40WnYN8mv"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --memory' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -z 1>"/tmp/check_all_args.dWZySF9uql" 2>"/tmp/check_all_args.X2BLtPuPpR"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -z 1>"/tmp/check_all_args.dWZySF9uql" 2>"/tmp/check_all_args.X2BLtPuPpR"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -z 1>"/tmp/check_all_args.dWZySF9uql" 2>"/tmp/check_all_args.X2BLtPuPpR"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -z' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --timezone 1>"/tmp/check_all_args.4WA6aaHMkn" 2>"/tmp/check_all_args.WERUKHuoEN"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --timezone 1>"/tmp/check_all_args.4WA6aaHMkn" 2>"/tmp/check_all_args.WERUKHuoEN"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --timezone 1>"/tmp/check_all_args.4WA6aaHMkn" 2>"/tmp/check_all_args.WERUKHuoEN"' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --timezone' 282s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure ../src/procenv runs with no errors 282s INFO:LANG=POSIX:LC_ALL=POSIX: Ensuring output is sorted by section 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure --file= works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure running multiple '--file= --version' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--file-append --file= --version' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure --output=stdout works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure --output=stderr works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure --exec works (with no previous arguments) 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--version --exec' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--exec' can exec ../src/procenv 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure 'PROCENV_EXEC' and 'PROCENV_FILE' variables work 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--format=text' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--format=crumb' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--indent-char=.' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--indent-char=;' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--indent-char=12' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--indent-char=123' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--indent-char=1234' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--separator=.' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--separator=;' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--separator=12' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--separator=123' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--separator=1234' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--crumb-separator=.' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--crumb-separator=;' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--crumb-separator=12' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--crumb-separator=123' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--crumb-separator=1234' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--format=xml' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--format=json' works 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure non-display option ('--crumb-separator=.') disallowed after display option ('--meta') 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure non-display option ('--file=/tmp/foo') disallowed after display option ('--meta') 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure non-display option ('--format=crumb') disallowed after display option ('--meta') 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure non-display option ('--indent=7') disallowed after display option ('--meta') 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure non-display option ('--indent-char=X') disallowed after display option ('--meta') 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure non-display option ('--separator=X') disallowed after display option ('--meta') 283s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure an empty environment is tolerated 283s PASS: check_all_args 283s meta: 283s version: 0.51 283s package: procenv 0.51 283s mode: non-privileged 283s build-type: reproducible 283s driver: 283s name: linux 283s file: platform/linux/platform.c 283s format-type: text 283s format-version: 17 283s arguments: 283s count: 1 283s list: 283s argv[0]: ./procenv 283s capabilities: 283s count (CAP_LAST_CAP+1): 41 283s known: 283s CAP_CHOWN: 283s number: 0 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_DAC_OVERRIDE: 283s number: 1 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_DAC_READ_SEARCH: 283s number: 2 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_FOWNER: 283s number: 3 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_FSETID: 283s number: 4 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_KILL: 283s number: 5 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SETGID: 283s number: 6 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SETUID: 283s number: 7 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SETPCAP: 283s number: 8 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_LINUX_IMMUTABLE: 283s number: 9 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_NET_BIND_SERVICE: 283s number: 10 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_NET_BROADCAST: 283s number: 11 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_NET_ADMIN: 283s number: 12 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_NET_RAW: 283s number: 13 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_IPC_LOCK: 283s number: 14 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_IPC_OWNER: 283s number: 15 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SYS_MODULE: 283s number: 16 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SYS_RAWIO: 283s number: 17 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SYS_CHROOT: 283s number: 18 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SYS_PTRACE: 283s number: 19 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SYS_PACCT: 283s number: 20 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SYS_ADMIN: 283s number: 21 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SYS_BOOT: 283s number: 22 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SYS_NICE: 283s number: 23 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SYS_RESOURCE: 283s number: 24 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SYS_TIME: 283s number: 25 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SYS_TTY_CONFIG: 283s number: 26 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_MKNOD: 283s number: 27 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_LEASE: 283s number: 28 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_AUDIT_WRITE: 283s number: 29 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_AUDIT_CONTROL: 283s number: 30 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SETFCAP: 283s number: 31 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_MAC_OVERRIDE: 283s number: 32 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_MAC_ADMIN: 283s number: 33 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_SYSLOG: 283s number: 34 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_WAKE_ALARM: 283s number: 35 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_BLOCK_SUSPEND: 283s number: 36 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s CAP_AUDIT_READ: 283s number: 37 283s supported: yes 283s in bounding set: yes 283s effective: no 283s inheritable: no 283s permitted: no 283s unknown: 283s keep: no 283s securebits: 283s value: 0x0 283s fields: 283s SECBIT_KEEP_CAPS: 0 283s SECBIT_NO_SETUID_FIXUP: 0 283s SECBIT_NOROOT: 0 283s cgroups: 283s 0: 283s path: /user.slice/user-1000.slice/session-1.scope 283s clocks: 283s CLOCK_REALTIME: 283s resolution: 0.000000001s 283s CLOCK_REALTIME_COARSE: 283s resolution: 0.010000000s 283s CLOCK_MONOTONIC: 283s resolution: 0.000000001s 283s CLOCK_MONOTONIC_COARSE: 283s resolution: 0.010000000s 283s CLOCK_MONOTONIC_RAW: 283s resolution: 0.000000001s 283s CLOCK_MONOTONIC_RAW: 283s resolution: 0.000000001s 283s CLOCK_PROCESS_CPUTIME_ID: 283s resolution: 0.000000001s 283s CLOCK_THREAD_CPUTIME_ID: 283s resolution: 0.000000001s 283s CLOCK_BOOTTIME: 283s resolution: 0.000000001s 283s compiler: 283s name: GCC 283s version: 14.2.0 283s compile date (__DATE__): [suppressed] 283s compile time (__TIME__): [suppressed] 283s timestamp (__TIMESTAMP__): [suppressed] 283s translation unit (__FILE__): procenv.c 283s base file (__BASE_FILE__): procenv.c 283s feature test macros: 283s _ATFILE_SOURCE: defined 283s _BSD_SOURCE: not defined 283s _DEFAULT_SOURCE: defined 283s _FILE_OFFSET_BITS: not defined 283s _FORTIFY_SOURCE: defined 283s _GNU_SOURCE: defined 283s _ISOC11_SOURCE: defined 283s _ISOC95_SOURCE: defined 283s _ISOC99_SOURCE: defined 283s _LARGEFILE64_SOURCE: defined 283s _LARGEFILE_SOURCE: defined 283s _POSIX_C_SOURCE: 200809 283s _POSIX_RAW_SOCKETS: defined 283s _POSIX_SOURCE: defined 283s _REENTRANT: not defined 283s __STDC_VERSION__: 199901 283s __STRICT_ANSI__: not defined 283s __STDC_WANT_IEC_60559_BFP_EXT__: 1 283s __STDC_WANT_IEC_60559_FUNCS_EXT__: 1 283s __STDC_WANT_LIB_EXT2__: 1 283s _SVID_SOURCE: not defined 283s _THREAD_SAFE: not defined 283s _XOPEN_SOURCE: 700 283s _XOPEN_SOURCE_EXTENDED: defined 283s confstr: 283s _CS_GNU_LIBC_VERSION: 'glibc 2.40' 283s _CS_GNU_LIBPTHREAD_VERSION: 'NPTL 2.40' 283s _CS_LFS64_CFLAGS: '-D_LARGEFILE64_SOURCE' 283s _CS_LFS64_LDFLAGS: n/a 283s _CS_LFS64_LIBS: n/a 283s _CS_LFS64_LINTFLAGS: '-D_LARGEFILE64_SOURCE' 283s _CS_LFS_CFLAGS: n/a 283s _CS_LFS_LDFLAGS: n/a 283s _CS_LFS_LIBS: n/a 283s _CS_LFS_LINTFLAGS: n/a 283s _CS_PATH: '/bin:/usr/bin' 283s _CS_POSIX_V6_ILP32_OFF32_CFLAGS: n/a 283s _CS_POSIX_V6_ILP32_OFF32_LDFLAGS: n/a 283s _CS_POSIX_V6_ILP32_OFF32_LIBS: n/a 283s _CS_POSIX_V6_ILP32_OFF32_LINTFLAGS: n/a 283s _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS: n/a 283s _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS: n/a 283s _CS_POSIX_V6_ILP32_OFFBIG_LIBS: n/a 283s _CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS: n/a 283s _CS_POSIX_V6_LP64_OFF64_CFLAGS: '-m64' 283s _CS_POSIX_V6_LP64_OFF64_LDFLAGS: '-m64' 283s _CS_POSIX_V6_LP64_OFF64_LIBS: n/a 283s _CS_POSIX_V6_LP64_OFF64_LINTFLAGS: n/a 283s _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS: n/a 283s _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS: n/a 283s _CS_POSIX_V6_LPBIG_OFFBIG_LIBS: n/a 283s _CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS: n/a 283s _CS_POSIX_V7_ILP32_OFF32_CFLAGS: n/a 283s _CS_POSIX_V7_ILP32_OFF32_LDFLAGS: n/a 283s _CS_POSIX_V7_ILP32_OFF32_LIBS: n/a 283s _CS_POSIX_V7_ILP32_OFF32_LINTFLAGS: n/a 283s _CS_POSIX_V7_ILP32_OFFBIG_CFLAGS: n/a 283s _CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS: n/a 283s _CS_POSIX_V7_ILP32_OFFBIG_LIBS: n/a 283s _CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS: n/a 283s _CS_POSIX_V7_LP64_OFF64_CFLAGS: '-m64' 283s _CS_POSIX_V7_LP64_OFF64_LDFLAGS: '-m64' 283s _CS_POSIX_V7_LP64_OFF64_LIBS: n/a 283s _CS_POSIX_V7_LP64_OFF64_LINTFLAGS: n/a 283s _CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS: n/a 283s _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS: n/a 283s _CS_POSIX_V7_LPBIG_OFFBIG_LIBS: n/a 283s _CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS: n/a 283s _CS_V5_WIDTH_RESTRICTED_ENVS: 'XBS5_LP64_OFF64' 283s _XBS5_WIDTH_RESTRICTED_ENVS: 'XBS5_LP64_OFF64' 283s XBS5_WIDTH_RESTRICTED_ENVS: 'XBS5_LP64_OFF64' 283s _CS_V6_WIDTH_RESTRICTED_ENVS: 'POSIX_V6_LP64_OFF64' 283s POSIX_V6_WIDTH_RESTRICTED_ENVS,_POSIX_V6_WIDTH_RESTRICTED_ENVS: 'POSIX_V6_LP64_OFF64' 283s _CS_V7_WIDTH_RESTRICTED_ENVS: 'POSIX_V7_LP64_OFF64' 283s _CS_XBS5_ILP32_OFF32_CFLAGS: n/a 283s _CS_XBS5_ILP32_OFF32_LDFLAGS: n/a 283s _CS_XBS5_ILP32_OFF32_LIBS: n/a 283s _CS_XBS5_ILP32_OFF32_LINTFLAGS: n/a 283s _CS_XBS5_ILP32_OFFBIG_CFLAGS: n/a 283s _CS_XBS5_ILP32_OFFBIG_LDFLAGS: n/a 283s _CS_XBS5_ILP32_OFFBIG_LIBS: n/a 283s _CS_XBS5_ILP32_OFFBIG_LINTFLAGS: n/a 283s _CS_XBS5_LP64_OFF64_CFLAGS: '-m64' 283s _CS_XBS5_LP64_OFF64_LDFLAGS: '-m64' 283s _CS_XBS5_LP64_OFF64_LIBS: n/a 283s _CS_XBS5_LP64_OFF64_LINTFLAGS: n/a 283s _CS_XBS5_LPBIG_OFFBIG_CFLAGS: n/a 283s _CS_XBS5_LPBIG_OFFBIG_LDFLAGS: n/a 283s _CS_XBS5_LPBIG_OFFBIG_LIBS: n/a 283s _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS: n/a 283s cpu: 283s number: 2 of 2 283s affinity list: 0-1 283s scheduler: 283s type: SCHED_OTHER 283s priority: 283s process: 0 283s process group: 0 283s user: 0 283s I/O priority: 283s process: 283s class: IOPRIO_CLASS_NONE 283s priority: 0 283s group: 283s class: IOPRIO_CLASS_NONE 283s priority: 0 283s user: 283s class: IOPRIO_CLASS_NONE 283s priority: 0 283s environment: 283s APT_CONFIG: /var/lib/sbuild/apt.conf 283s ASFLAGS: 283s ASFLAGS_FOR_BUILD: 283s CFLAGS: -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 283s CFLAGS_FOR_BUILD: -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security 283s CPPFLAGS: -Wdate-time -D_FORTIFY_SOURCE=3 283s CPPFLAGS_FOR_BUILD: -Wdate-time -D_FORTIFY_SOURCE=3 283s CXXFLAGS: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 283s CXXFLAGS_FOR_BUILD: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security 283s DEB_BUILD_ARCH: s390x 283s DEB_BUILD_ARCH_ABI: base 283s DEB_BUILD_ARCH_BITS: 64 283s DEB_BUILD_ARCH_CPU: s390x 283s DEB_BUILD_ARCH_ENDIAN: big 283s DEB_BUILD_ARCH_LIBC: gnu 283s DEB_BUILD_ARCH_OS: linux 283s DEB_BUILD_GNU_CPU: s390x 283s DEB_BUILD_GNU_SYSTEM: linux-gnu 283s DEB_BUILD_GNU_TYPE: s390x-linux-gnu 283s DEB_BUILD_MULTIARCH: s390x-linux-gnu 283s DEB_BUILD_OPTIONS: parallel=2 283s DEB_BUILD_PROFILES: noudeb 283s DEB_HOST_ARCH: s390x 283s DEB_HOST_ARCH_ABI: base 283s DEB_HOST_ARCH_BITS: 64 283s DEB_HOST_ARCH_CPU: s390x 283s DEB_HOST_ARCH_ENDIAN: big 283s DEB_HOST_ARCH_LIBC: gnu 283s DEB_HOST_ARCH_OS: linux 283s DEB_HOST_GNU_CPU: s390x 283s DEB_HOST_GNU_SYSTEM: linux-gnu 283s DEB_HOST_GNU_TYPE: s390x-linux-gnu 283s DEB_HOST_MULTIARCH: s390x-linux-gnu 283s DEB_RULES_REQUIRES_ROOT: binary-targets 283s DEB_TARGET_ARCH: s390x 283s DEB_TARGET_ARCH_ABI: base 283s DEB_TARGET_ARCH_BITS: 64 283s DEB_TARGET_ARCH_CPU: s390x 283s DEB_TARGET_ARCH_ENDIAN: big 283s DEB_TARGET_ARCH_LIBC: gnu 283s DEB_TARGET_ARCH_OS: linux 283s DEB_TARGET_GNU_CPU: s390x 283s DEB_TARGET_GNU_SYSTEM: linux-gnu 283s DEB_TARGET_GNU_TYPE: s390x-linux-gnu 283s DEB_TARGET_MULTIARCH: s390x-linux-gnu 283s DFLAGS: -frelease 283s DFLAGS_FOR_BUILD: -frelease 283s DH_INTERNAL_BUILDFLAGS: 1 283s ELF_PACKAGE_METADATA: {"type":"deb","os":"ubuntu","name":"procenv","version":"0.51-0.2","architecture":"s390x"} 283s FCFLAGS: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 283s FCFLAGS_FOR_BUILD: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong 283s FFLAGS: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 283s FFLAGS_FOR_BUILD: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong 283s HOME: /sbuild-nonexistent 283s LANG: C.UTF-8 283s LC_COLLATE: C.UTF-8 283s LC_CTYPE: C.UTF-8 283s LDFLAGS: -Wl,-Bsymbolic-functions -Wl,-z,relro 283s LDFLAGS_FOR_BUILD: -Wl,-z,relro 283s LOGNAME: ubuntu 283s MAKEFLAGS: -j1 -- VERBOSE=1 TESTSUITEFLAGS=-j1\ --verbose 283s MAKELEVEL: 4 283s MFLAGS: -j1 283s OBJCFLAGS: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 283s OBJCFLAGS_FOR_BUILD: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security 283s OBJCXXFLAGS: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 283s OBJCXXFLAGS_FOR_BUILD: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security 283s OLDPWD: /build/reproducible-path/procenv-0.51 283s PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games 283s PERL_USE_UNSAFE_INC: 1 283s PWD: /build/reproducible-path/procenv-0.51/src 283s RUSTFLAGS: -Ctarget-feature=+backchain 283s RUSTFLAGS_FOR_BUILD: 283s SCHROOT_ALIAS_NAME: plucky-s390x-sbuild 283s SCHROOT_CHROOT_NAME: plucky-s390x-sbuild 283s SCHROOT_COMMAND: dpkg-buildpackage --sanitize-env -us -uc -b 283s SCHROOT_GID: 1000 283s SCHROOT_GROUP: ubuntu 283s SCHROOT_SESSION_ID: plucky-s390x-sbuild-19efcf6b-9ec2-4021-b1e6-6555061bbd68 283s SCHROOT_UID: 1000 283s SCHROOT_USER: ubuntu 283s SHELL: /bin/sh 283s SHLVL: 1 283s SOURCE_DATE_EPOCH: 1607694716 283s TESTSUITEFLAGS: -j1 --verbose 283s USER: ubuntu 283s VERBOSE: 1 283s _: ./procenv 283s srcdir: . 283s file descriptors: 283s 0: 283s terminal: no 283s valid: yes 283s device: /dev/null 283s 1: 283s terminal: no 283s valid: yes 283s device: pipe:[29442] 283s 2: 283s terminal: no 283s valid: yes 283s device: pipe:[29442] 283s libc: 283s name: GNU libc (glibc) 283s version: 2 283s minor: 40 283s libraries: 283s linux-vdso64.so.1: 283s path: linux-vdso64.so.1 283s address: 0x3ffdb4fd000 283s libselinux.so.1: 283s path: /lib/s390x-linux-gnu/libselinux.so.1 283s address: 0x3ff80e00000 283s libcap.so.2: 283s path: /lib/s390x-linux-gnu/libcap.so.2 283s address: 0x3ff80d80000 283s libc.so.6: 283s path: /lib/s390x-linux-gnu/libc.so.6 283s address: 0x3ff80b80000 283s libpcre2-8.so.0: 283s path: /lib/s390x-linux-gnu/libpcre2-8.so.0 283s address: 0x3ff80a80000 283s ld64.so.1: 283s path: /lib/ld64.so.1 283s address: 0x3ff80f00000 283s limits: 283s RLIMIT_AS: 283s soft: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s hard: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s RLIMIT_CORE: 283s soft: 283s current: 0 283s max: 18446744073709551615 283s hard: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s RLIMIT_CPU: 283s soft: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s hard: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s RLIMIT_DATA: 283s soft: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s hard: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s RLIMIT_FSIZE: 283s soft: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s hard: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s RLIMIT_RTTIME: 283s soft: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s hard: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s RLIMIT_LOCKS: 283s soft: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s hard: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s RLIMIT_MEMLOCK: 283s soft: 283s current: 523898880 283s max: 18446744073709551615 283s hard: 283s current: 523898880 283s max: 18446744073709551615 283s RLIMIT_MSGQUEUE: 283s soft: 283s current: 819200 283s max: 18446744073709551615 283s hard: 283s current: 819200 283s max: 18446744073709551615 283s RLIMIT_NICE: 283s soft: 283s current: 0 283s max: 18446744073709551615 283s hard: 283s current: 0 283s max: 18446744073709551615 283s RLIMIT_NOFILE: 283s soft: 283s current: 1024 283s max: 18446744073709551615 283s hard: 283s current: 1073741816 283s max: 18446744073709551615 283s RLIMIT_NPROC: 283s soft: 283s current: 15897 283s max: 18446744073709551615 283s hard: 283s current: 15897 283s max: 18446744073709551615 283s RLIMIT_RSS: 283s soft: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s hard: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s RLIMIT_RTPRIO: 283s soft: 283s current: 0 283s max: 18446744073709551615 283s hard: 283s current: 0 283s max: 18446744073709551615 283s RLIMIT_SIGPENDING: 283s soft: 283s current: 15897 283s max: 18446744073709551615 283s hard: 283s current: 15897 283s max: 18446744073709551615 283s RLIMIT_STACK: 283s soft: 283s current: 8388608 283s max: 18446744073709551615 283s hard: 283s current: 18446744073709551615 283s max: 18446744073709551615 283s locale: 283s LANG: C.UTF-8 283s LANGUAGE: 283s LC_ADDRESS: C.UTF-8 283s LC_COLLATE: C.UTF-8 283s LC_CTYPE: C.UTF-8 283s LC_IDENTIFICATION: C.UTF-8 283s LC_MEASUREMENT: C.UTF-8 283s LC_MESSAGES: C.UTF-8 283s LC_MONETARY: C.UTF-8 283s LC_NAME: C.UTF-8 283s LC_NUMERIC: C.UTF-8 283s LC_PAPER: C.UTF-8 283s LC_TELEPHONE: C.UTF-8 283s LC_TIME: C.UTF-8 283s LC_ALL: 283s memory: 283s page size: 4096 bytes 283s numa: 283s message queues: 283s info: 283s msgpool: 0 283s msgmap: 0 283s msgmax: 8192 283s msgmnb: 16384 283s msgmni: 32000 283s msgssz: 16 283s msgtql: 0 283s msgseg: 65535 283s sets: 283s misc: 283s umask: 0022 283s current directory (cwd): '/build/reproducible-path/procenv-0.51/src' 283s root: '/' 283s chroot: yes 283s container: no 283s vm: no 283s prctl: 283s process endian: unknown 283s dumpable: yes 283s floating point emulation: unknown 283s floating point exceptions: unknown 283s process name: procenv 283s parent death signal: disabled 283s secure computing: disabled 283s process timing: statistical 283s timestamp counter read: unknown 283s machine-check exception: system default 283s no new privileges: normal execve 283s timer slack: 50000ns 283s child subreaper: no 283s clear child tid address: 0x3ff 283s security module: 283s name: unknown 283s context: unknown 283s kernel headers version: 6.12.11 283s personality: 283s type: PER_LINUX 283s flags: 283s mounts: 283s /: 283s filesystem: 'plucky-s390x-sbuild' 283s canonical: unknown 283s type: 'overlay' 283s options: 'rw,relatime,lowerdir=/var/lib/schroot/union/underlay/plucky-s390x-sbuild-19efcf6b-9ec2-4021-b1e6-6555061bbd68,upperdir=/var/lib/schroot/union/overlay/plucky-s390x-sbuild-19efcf6b-9ec2-4021-b1e6-6555061bbd68/upper,workdir=/var/lib/schroot/union/overlay/plucky-s390x-sbuild-19efcf6b-9ec2-4021-b1e6-6555061bbd68/work,uuid=on,nouserxattr' 283s pathconf: 283s _PC_ALLOC_SIZE_MIN: 4096 283s _PC_ASYNC_IO: n/a 283s _PC_CHOWN_RESTRICTED: 1 283s _PC_FILESIZEBITS: 32 283s _PC_LINK_MAX: 127 283s _PC_MAX_CANON: 255 283s _PC_MAX_INPUT: 255 283s _PC_NAME_MAX: 255 283s _PC_NO_TRUNC: 1 283s _PC_PATH_MAX: 4096 283s _PC_PIPE_BUF: 4096 283s _PC_PRIO_IO: n/a 283s _PC_REC_INCR_XFER_SIZE: n/a 283s _PC_REC_MAX_XFER_SIZE: n/a 283s _PC_REC_MIN_XFER_SIZE: 4096 283s _PC_REC_XFER_ALIGN: 4096 283s _PC_SOCK_MAXBUF: n/a 283s _PC_SYMLINK_MAX: n/a 283s _PC_2_SYMLINKS: 1 283s _PC_SYNC_IO: n/a 283s _PC_VDISABLE: 0 283s device: 283s major: 0 283s minor: 52 283s dump frequency: 0 283s fsck pass number: 0 283s fsid: 869050f00a2bf7b3 283s optimal block size: 4096 283s blocks: 283s size: 1024 bytes 283s total: 20252352 283s used: 2594944 283s free: 17657408 283s available: 17641024 283s files/inodes: 283s total: 2560000 283s used: 80510 283s free: 2479490 283s /proc: 283s filesystem: 'proc' 283s canonical: unknown 283s type: 'proc' 283s options: 'rw,nosuid,nodev,noexec,relatime' 283s pathconf: 283s _PC_ALLOC_SIZE_MIN: 4096 283s _PC_ASYNC_IO: n/a 283s _PC_CHOWN_RESTRICTED: 1 283s _PC_FILESIZEBITS: 32 283s _PC_LINK_MAX: 127 283s _PC_MAX_CANON: 255 283s _PC_MAX_INPUT: 255 283s _PC_NAME_MAX: 255 283s _PC_NO_TRUNC: 1 283s _PC_PATH_MAX: 4096 283s _PC_PIPE_BUF: 4096 283s _PC_PRIO_IO: n/a 283s _PC_REC_INCR_XFER_SIZE: n/a 283s _PC_REC_MAX_XFER_SIZE: n/a 283s _PC_REC_MIN_XFER_SIZE: 4096 283s _PC_REC_XFER_ALIGN: 4096 283s _PC_SOCK_MAXBUF: n/a 283s _PC_SYMLINK_MAX: n/a 283s _PC_2_SYMLINKS: 1 283s _PC_SYNC_IO: n/a 283s _PC_VDISABLE: 0 283s device: 283s major: 0 283s minor: 23 283s dump frequency: 0 283s fsck pass number: 0 283s fsid: 0000000000000017 283s optimal block size: 4096 283s blocks: 283s size: 1024 bytes 283s total: 0 283s used: 0 283s free: 0 283s available: 0 283s files/inodes: 283s total: 0 283s used: 0 283s free: 0 283s /sys: 283s filesystem: 'sysfs' 283s canonical: unknown 283s type: 'sysfs' 283s options: 'rw,nosuid,nodev,noexec,relatime' 283s pathconf: 283s _PC_ALLOC_SIZE_MIN: 4096 283s _PC_ASYNC_IO: n/a 283s _PC_CHOWN_RESTRICTED: 1 283s _PC_FILESIZEBITS: 32 283s _PC_LINK_MAX: 127 283s _PC_MAX_CANON: 255 283s _PC_MAX_INPUT: 255 283s _PC_NAME_MAX: 255 283s _PC_NO_TRUNC: 1 283s _PC_PATH_MAX: 4096 283s _PC_PIPE_BUF: 4096 283s _PC_PRIO_IO: n/a 283s _PC_REC_INCR_XFER_SIZE: n/a 283s _PC_REC_MAX_XFER_SIZE: n/a 283s _PC_REC_MIN_XFER_SIZE: 4096 283s _PC_REC_XFER_ALIGN: 4096 283s _PC_SOCK_MAXBUF: n/a 283s _PC_SYMLINK_MAX: n/a 283s _PC_2_SYMLINKS: 1 283s _PC_SYNC_IO: n/a 283s _PC_VDISABLE: 0 283s device: 283s major: 0 283s minor: 22 283s dump frequency: 0 283s fsck pass number: 0 283s fsid: ad3da427abe4d819 283s optimal block size: 4096 283s blocks: 283s size: 1024 bytes 283s total: 0 283s used: 0 283s free: 0 283s available: 0 283s files/inodes: 283s total: 0 283s used: 0 283s free: 0 283s /dev/pts: 283s filesystem: '/dev/pts' 283s canonical: unknown 283s type: 'devpts' 283s options: 'rw,relatime,gid=5,mode=620,ptmxmode=666' 283s pathconf: 283s _PC_ALLOC_SIZE_MIN: 4096 283s _PC_ASYNC_IO: n/a 283s _PC_CHOWN_RESTRICTED: 1 283s _PC_FILESIZEBITS: 32 283s _PC_LINK_MAX: 127 283s _PC_MAX_CANON: 255 283s _PC_MAX_INPUT: 255 283s _PC_NAME_MAX: 255 283s _PC_NO_TRUNC: 1 283s _PC_PATH_MAX: 4096 283s _PC_PIPE_BUF: 4096 283s _PC_PRIO_IO: n/a 283s _PC_REC_INCR_XFER_SIZE: n/a 283s _PC_REC_MAX_XFER_SIZE: n/a 283s _PC_REC_MIN_XFER_SIZE: 4096 283s _PC_REC_XFER_ALIGN: 4096 283s _PC_SOCK_MAXBUF: n/a 283s _PC_SYMLINK_MAX: n/a 283s _PC_2_SYMLINKS: 0 283s _PC_SYNC_IO: n/a 283s _PC_VDISABLE: 0 283s device: 283s major: 0 283s minor: 54 283s dump frequency: 0 283s fsck pass number: 0 283s fsid: 0000000000000036 283s optimal block size: 4096 283s blocks: 283s size: 1024 bytes 283s total: 0 283s used: 0 283s free: 0 283s available: 0 283s files/inodes: 283s total: 0 283s used: 0 283s free: 0 283s /dev/shm: 283s filesystem: 'tmpfs' 283s canonical: unknown 283s type: 'tmpfs' 283s options: 'rw,relatime,inode64' 283s pathconf: 283s _PC_ALLOC_SIZE_MIN: 4096 283s _PC_ASYNC_IO: n/a 283s _PC_CHOWN_RESTRICTED: 1 283s _PC_FILESIZEBITS: 32 283s _PC_LINK_MAX: 127 283s _PC_MAX_CANON: 255 283s _PC_MAX_INPUT: 255 283s _PC_NAME_MAX: 255 283s _PC_NO_TRUNC: 1 283s _PC_PATH_MAX: 4096 283s _PC_PIPE_BUF: 4096 283s _PC_PRIO_IO: n/a 283s _PC_REC_INCR_XFER_SIZE: n/a 283s _PC_REC_MAX_XFER_SIZE: n/a 283s _PC_REC_MIN_XFER_SIZE: 4096 283s _PC_REC_XFER_ALIGN: 4096 283s _PC_SOCK_MAXBUF: n/a 283s _PC_SYMLINK_MAX: n/a 283s _PC_2_SYMLINKS: 1 283s _PC_SYNC_IO: n/a 283s _PC_VDISABLE: 0 283s device: 283s major: 0 283s minor: 55 283s dump frequency: 0 283s fsck pass number: 0 283s fsid: 237732e967c409fc 283s optimal block size: 4096 283s blocks: 283s size: 1024 bytes 283s total: 2046480 283s used: 0 283s free: 2046480 283s available: 2046480 283s files/inodes: 283s total: 511620 283s used: 1 283s free: 511619 283s /build: 283s filesystem: '/dev/vda1' 283s canonical: unknown 283s type: 'ext4' 283s options: 'rw,relatime,discard,errors=remount-ro,commit=30' 283s pathconf: 283s _PC_ALLOC_SIZE_MIN: 4096 283s _PC_ASYNC_IO: n/a 283s _PC_CHOWN_RESTRICTED: 1 283s _PC_FILESIZEBITS: 64 283s _PC_LINK_MAX: 65000 283s _PC_MAX_CANON: 255 283s _PC_MAX_INPUT: 255 283s _PC_NAME_MAX: 255 283s _PC_NO_TRUNC: 1 283s _PC_PATH_MAX: 4096 283s _PC_PIPE_BUF: 4096 283s _PC_PRIO_IO: n/a 283s _PC_REC_INCR_XFER_SIZE: n/a 283s _PC_REC_MAX_XFER_SIZE: n/a 283s _PC_REC_MIN_XFER_SIZE: 4096 283s _PC_REC_XFER_ALIGN: 4096 283s _PC_SOCK_MAXBUF: n/a 283s _PC_SYMLINK_MAX: n/a 283s _PC_2_SYMLINKS: 1 283s _PC_SYNC_IO: n/a 283s _PC_VDISABLE: 0 283s device: 283s major: 253 283s minor: 1 283s dump frequency: 0 283s fsck pass number: 0 283s fsid: 124be179c6922e6c 283s optimal block size: 4096 283s blocks: 283s size: 1024 bytes 283s total: 20252352 283s used: 2594944 283s free: 17657408 283s available: 17641024 283s files/inodes: 283s total: 2560000 283s used: 80510 283s free: 2479490 283s namespaces: 283s cgroup: 4026531835 283s ipc: 4026531839 283s mnt: 4026531841 283s net: 4026531840 283s pid: 4026531836 283s pid: 4026531836 283s time: 4026531834 283s time: 4026531834 283s user: 4026531837 283s uts: 4026531838 283s network: 283s lo: 283s family: AF_INET (0x2) 283s flags: 283s value: 0x10049 283s fields: 283s IFF_UP: 0x1 283s IFF_LOOPBACK: 0x8 283s IFF_RUNNING: 0x40 283s IFF_LOWER_UP: 0x10000 283s extended flags: 283s value: 0x0 283s fields: 283s mac: n/a 283s mtu: 65536 283s address: 127.0.0.1 283s netmask: 255.0.0.0 283s enc1: 283s family: AF_INET (0x2) 283s flags: 283s value: 0x11043 283s fields: 283s IFF_UP: 0x1 283s IFF_BROADCAST: 0x2 283s IFF_RUNNING: 0x40 283s IFF_MULTICAST: 0x1000 283s IFF_LOWER_UP: 0x10000 283s extended flags: 283s value: 0x0 283s fields: 283s mac: fa:16:3e:dc:f4:e1 283s mtu: 1500 283s address: 10.145.232.40 283s netmask: 255.255.255.0 283s broadcast: 10.145.232.255 283s lo: 283s family: AF_INET6 (0xa) 283s flags: 283s value: 0x10049 283s fields: 283s IFF_UP: 0x1 283s IFF_LOOPBACK: 0x8 283s IFF_RUNNING: 0x40 283s IFF_LOWER_UP: 0x10000 283s extended flags: 283s value: 0x0 283s fields: 283s mac: n/a 283s mtu: 65536 283s address: ::1 283s netmask: ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff 283s enc1: 283s family: AF_INET6 (0xa) 283s flags: 283s value: 0x11043 283s fields: 283s IFF_UP: 0x1 283s IFF_BROADCAST: 0x2 283s IFF_RUNNING: 0x40 283s IFF_MULTICAST: 0x1000 283s IFF_LOWER_UP: 0x10000 283s extended flags: 283s value: 0x0 283s fields: 283s mac: n/a 283s mtu: 1500 283s address: fe80::f816:3eff:fedc:f4e1%enc1 283s netmask: ffff:ffff:ffff:ffff:: 283s oom: 283s oom_score: 666 283s oom_adj: 0 283s oom_score_adj: 0 283s platform: 283s operating system: Linux (zSeries) 283s architecture: SystemZ 283s kernel bits: 64 283s executable bits: 64 283s code endian: big 283s data model: LP64 (4/8/8) 283s process: 283s process id (pid): 15312 283s parent process id (ppid): 12179 283s session id (sid): 10843 (leader=no) 283s name: 'procenv' 283s ancestry: 15312 ('procenv'), 12179 ('bash'), 12175 ('make'), 12154 ('make'), 12149 ('bash'), 12148 ('make'), 12135 ('dh_auto_test'), 10877 ('dh'), 10876 ('rules'), 10844 ('dpkg-buildpacka'), 10843 ('schroot'), 9850 ('sbuild'), 9849 ('runuser'), 3234 ('build-procenv'), 3215 ('wrapper.sh'), 3214 ('su'), 3212 ('autopkgtest-run'), 3211 ('sudo'), 867 ('sshd-session'), 804 ('sshd-session'), 796 ('sshd'), 1 ('systemd') 283s process group id: 10843 (leader=no) 283s foreground process group: -1 283s terminal: '/dev/tty' 283s has controlling terminal: no 283s on console: no 283s user: 283s real user id (uid): 1000 ('ubuntu') 283s effective user id (euid): 1000 ('ubuntu') 283s saved set-user-id (suid): 1000 ('ubuntu') 283s group: 283s real group id (gid): 1000 ('ubuntu') 283s effective group id (egid): 1000 ('ubuntu') 283s saved set-group-id (sgid): 1000 ('ubuntu') 283s login name: 'ubuntu' 283s passwd: 283s name: 'ubuntu' 283s gecos: 'Ubuntu' 283s dir: '/home/ubuntu' 283s shell: '/bin/bash' 283s groups: 'adm' (4), 'cdrom' (24), 'cpacfstats' (107), 'dip' (30), 'lxd' (103), 'sbuild' (115), 'sudo' (27), 'ubuntu' (1000) 283s ranges: 283s char: 283s size: 1 byte 283s unsigned: 283s decimal: 0 to 255 283s symbolic: 0 to UCHAR_MAX 283s scientific: 0.000000e+00 to 2.550000e+02 283s hex: 0x00 to 0xff 283s signed: 283s decimal: -128 to 127 283s symbolic: SCHAR_MIN to SCHAR_MAX 283s short int: 283s size: 2 bytes 283s unsigned: 283s decimal: 0 to 65535 283s symbolic: 0 to USHRT_MAX 283s scientific: 0.000000e+00 to 6.553500e+04 283s hex: 0x0000 to 0xffff 283s signed: 283s decimal: -32768 to 32767 283s symbolic: SHRT_MIN to SHRT_MAX 283s int: 283s size: 4 bytes 283s unsigned: 283s decimal: 0 to 4294967295 283s symbolic: 0 to UINT_MAX 283s scientific: 0.000000e+00 to 4.294967e+09 283s hex: 0x00000000 to 0xffffffff 283s signed: 283s decimal: -2147483648 to 2147483647 283s symbolic: INT_MIN to INT_MAX 283s long int: 283s size: 8 bytes 283s unsigned: 283s decimal: 0 to 4294967295 283s symbolic: 0 to ULONG_MAX 283s scientific: 0.000000e+00 to 1.844674e+19 283s hex: 0x0000000000000000 to 0x00000000ffffffff 283s signed: 283s decimal: -9223372036854775808 to 9223372036854775807 283s symbolic: LONG_MIN to LONG_MAX 283s long long int: 283s size: 8 bytes 283s unsigned: 283s decimal: 0 to 18446744073709551615 283s symbolic: 0 to ULLONG_MAX 283s scientific: 0.000000e+00 to 1.844674e+19 283s hex: 0x0000000000000000 to 0xffffffffffffffff 283s signed: 283s decimal: -9223372036854775808 to 9223372036854775807 283s symbolic: LLONG_MIN to LLONG_MAX 283s float: 283s size: 4 bytes 283s signed: 1.175494e-38 to 3.402823e+38 283s symbolic: FLT_MIN to FLT_MAX 283s double: 283s size: 8 bytes 283s signed: 2.225074e-308 to 1.797693e+308 283s symbolic: DBL_MIN to DBL_MAX 283s long double: 283s size: 16 bytes 283s signed: 3.362103e-4932 to 1.189731e+4932 283s symbolic: LDBL_MIN to LDBL_MAX 283s rusage: 283s ru_maxrss: 2836 283s ru_ixrss: 0 283s ru_idrss: 0 283s ru_isrss: 0 283s ru_minflt: 207 283s ru_majflt: 0 283s ru_nswap: 0 283s ru_inblock: 0 283s ru_oublock: 0 283s ru_msgsnd: 0 283s ru_msgrcv: 0 283s ru_nsignals: 0 283s ru_nvcsw: 0 283s ru_nivcsw: 1 283s semaphores: 283s info: 283s semmap: 1024000000 283s semmni: 32000 283s semmns: 1024000000 283s semmnu: 1024000000 283s semmsl: 32000 283s semopm: 500 283s semume: 500 283s semusz: 0 283s semvmx: 32767 283s semaem: 0 283s set: 283s shared memory: 283s info: 283s segments: 0 283s pages: 0 283s shm_rss: 0 283s shm_swp: 0 283s swap_attempts: 0 283s swap_successes: 0 283s segments: 283s signals: 283s SIGHUP: 283s number: 1 283s description: 'Hangup' 283s blocked: no 283s ignored: no 283s SIGINT: 283s number: 2 283s description: 'Interrupt' 283s blocked: no 283s ignored: no 283s SIGQUIT: 283s number: 3 283s description: 'Quit' 283s blocked: no 283s ignored: no 283s SIGILL: 283s number: 4 283s description: 'Illegal instruction' 283s blocked: no 283s ignored: no 283s SIGTRAP: 283s number: 5 283s description: 'Trace/breakpoint trap' 283s blocked: no 283s ignored: no 283s SIGABRT: 283s number: 6 283s description: 'Aborted' 283s blocked: no 283s ignored: no 283s SIGBUS: 283s number: 7 283s description: 'Bus error' 283s blocked: no 283s ignored: no 283s SIGFPE: 283s number: 8 283s description: 'Floating point exception' 283s blocked: no 283s ignored: no 283s SIGKILL: 283s number: 9 283s description: 'Killed' 283s blocked: no 283s ignored: no 283s SIGUSR1: 283s number: 10 283s description: 'User defined signal 1' 283s blocked: no 283s ignored: no 283s SIGSEGV: 283s number: 11 283s description: 'Segmentation fault' 283s blocked: no 283s ignored: no 283s SIGUSR2: 283s number: 12 283s description: 'User defined signal 2' 283s blocked: no 283s ignored: no 283s SIGPIPE: 283s number: 13 283s description: 'Broken pipe' 283s blocked: no 283s ignored: no 283s SIGALRM: 283s number: 14 283s description: 'Alarm clock' 283s blocked: no 283s ignored: no 283s SIGTERM: 283s number: 15 283s description: 'Terminated' 283s blocked: no 283s ignored: no 283s SIGSTKFLT: 283s number: 16 283s description: 'Stack fault' 283s blocked: no 283s ignored: no 283s SIGCHLD|SIGCLD: 283s number: 17 283s description: 'Child exited' 283s blocked: no 283s ignored: no 283s SIGCONT: 283s number: 18 283s description: 'Continued' 283s blocked: no 283s ignored: no 283s SIGSTOP: 283s number: 19 283s description: 'Stopped (signal)' 283s blocked: no 283s ignored: no 283s SIGTSTP: 283s number: 20 283s description: 'Stopped' 283s blocked: no 283s ignored: no 283s SIGTTIN: 283s number: 21 283s description: 'Stopped (tty input)' 283s blocked: no 283s ignored: no 283s SIGTTOU: 283s number: 22 283s description: 'Stopped (tty output)' 283s blocked: no 283s ignored: no 283s SIGURG: 283s number: 23 283s description: 'Urgent I/O condition' 283s blocked: no 283s ignored: no 283s SIGXCPU: 283s number: 24 283s description: 'CPU time limit exceeded' 283s blocked: no 283s ignored: no 283s SIGXFSZ: 283s number: 25 283s description: 'File size limit exceeded' 283s blocked: no 283s ignored: no 283s SIGVTALRM: 283s number: 26 283s description: 'Virtual timer expired' 283s blocked: no 283s ignored: no 283s SIGPROF: 283s number: 27 283s description: 'Profiling timer expired' 283s blocked: no 283s ignored: no 283s SIGWINCH: 283s number: 28 283s description: 'Window changed' 283s blocked: no 283s ignored: no 283s SIGIO: 283s number: 29 283s description: 'I/O possible' 283s blocked: no 283s ignored: no 283s SIGPWR: 283s number: 30 283s description: 'Power failure' 283s blocked: no 283s ignored: no 283s SIGSYS: 283s number: 31 283s description: 'Bad system call' 283s blocked: no 283s ignored: no 283s sizeof: 283s bits/byte (CHAR_BIT): 8 283s blkcnt_t: 8 bytes 283s blksize_t: 8 bytes 283s char: 1 byte 283s clockid_t: 4 bytes 283s clock_t: 8 bytes 283s dev_t: 8 bytes 283s div_t: 8 bytes 283s double: 8 bytes 283s fenv_t: 16 bytes 283s fexcept_t: 4 bytes 283s float: 4 bytes 283s fpos_t: 16 bytes 283s fsblkcnt_t: 8 bytes 283s fsfilcnt_t: 8 bytes 283s gid_t: 4 bytes 283s id_t: 4 bytes 283s imaxdiv_t: 16 bytes 283s ino_t: 8 bytes 283s int: 4 bytes 283s int16_t: 2 bytes 283s int32_t: 4 bytes 283s int64_t: 8 bytes 283s int8_t: 1 byte 283s int_fast16_t: 8 bytes 283s int_fast32_t: 8 bytes 283s int_fast64_t: 8 bytes 283s int_fast8_t: 1 byte 283s int_least16_t: 2 bytes 283s int_least32_t: 4 bytes 283s int_least64_t: 8 bytes 283s int_least8_t: 1 byte 283s intmax_t: 8 bytes 283s intptr_t: 8 bytes 283s key_t: 4 bytes 283s ldiv_t: 16 bytes 283s lldiv_t: 16 bytes 283s long double: 16 bytes 283s long int: 8 bytes 283s long long int: 8 bytes 283s mbstate_t: 8 bytes 283s mode_t: 4 bytes 283s mode_t: 4 bytes 283s nlink_t: 8 bytes 283s off_t: 8 bytes 283s pid_t: 4 bytes 283s pthread_attr_t: 56 bytes 283s pthread_barrierattr_t: 4 bytes 283s pthread_barrier_t: 32 bytes 283s pthread_condattr_t: 4 bytes 283s pthread_cond_t: 48 bytes 283s pthread_key_t: 4 bytes 283s pthread_mutexattr_t: 4 bytes 283s pthread_mutex_t: 40 bytes 283s pthread_once_t: 4 bytes 283s pthread_rwlockattr_t: 8 bytes 283s pthread_rwlock_t: 56 bytes 283s pthread_spinlock_t: 4 bytes 283s pthread_t: 8 bytes 283s ptrdiff_t: 8 bytes 283s rlim_t: 8 bytes 283s short int: 2 bytes 283s sig_atomic_t: 4 bytes 283s size_t: 8 bytes 283s ssize_t: 8 bytes 283s suseconds_t: 8 bytes 283s timer_t: 8 bytes 283s time_t: 8 bytes 283s uid_t: 4 bytes 283s uint16_t: 2 bytes 283s uint32_t: 4 bytes 283s uint64_t: 8 bytes 283s uint8_t: 1 byte 283s uint_fast16_t: 8 bytes 283s uint_fast32_t: 8 bytes 283s uint_fast64_t: 8 bytes 283s uint_fast8_t: 1 byte 283s uint_least16_t: 2 bytes 283s uint_least32_t: 4 bytes 283s uint_least64_t: 8 bytes 283s uint_least8_t: 1 byte 283s uintmax_t: 8 bytes 283s uintptr_t: 8 bytes 283s useconds_t: 4 bytes 283s void *: 8 bytes 283s wchar_t: 4 bytes 283s wint_t: 4 bytes 283s stat: 283s argv[0]: './procenv' 283s real path: '/build/reproducible-path/procenv-0.51/src/procenv' 283s device: 283s major: 253 283s minor: 1 283s inode: 297333 283s permissions: 283s octal: 0755 283s symbolic: -rwxr-xr-x 283s hard links: 1 283s user id (uid): 1000 ('ubuntu') 283s group id (gid): 1000 ('ubuntu') 283s size: 630688 bytes (1232 512-byte blocks) 283s times: 283s atime (access): 1740010622 (Thu Feb 20 00:17:02 2025) 283s mtime (modification): 1740010620 (Thu Feb 20 00:17:00 2025) 283s ctime (status change): 1740010620 (Thu Feb 20 00:17:00 2025) 283s sysconf: 283s _SC_2_C_BIND: 200809 283s _SC_2_C_DEV: 200809 283s _SC_2_CHAR_TERM: 200809 283s _SC_2_C_VERSION: 200809 283s _SC_2_FORT_DEV: n/a 283s _SC_2_FORT_RUN: n/a 283s _SC_2_LOCALEDEF: 200809 283s _SC_2_PBS: n/a 283s _SC_2_PBS_ACCOUNTING: n/a 283s _SC_2_PBS_LOCATE: n/a 283s _SC_2_PBS_MESSAGE: n/a 283s _SC_2_PBS_TRACK: n/a 283s _SC_2_SW_DEV: 200809 283s _SC_2_UPE: n/a 283s _SC_2_VERSION: 200809 283s _SC_ADVISORY_INFO: 200809 283s _SC_AIO_LISTIO_MAX: n/a 283s _SC_AIO_MAX: n/a 283s _SC_AIO_PRIO_DELTA_MAX: 20 283s _SC_ARG_MAX: 2097152 283s _SC_ASYNCHRONOUS_IO: 200809 283s _SC_ATEXIT_MAX: 2147483647 283s _SC_AVPHYS_PAGES: 641335 283s _SC_BARRIERS: 200809 283s _SC_BASE: n/a 283s _SC_BC_BASE_MAX: 99 283s _SC_BC_DIM_MAX: 2048 283s _SC_BC_SCALE_MAX: 99 283s _SC_BC_STRING_MAX: 1000 283s _SC_CHAR_BIT: 8 283s _SC_CHARCLASS_NAME_MAX: 2048 283s _SC_CHAR_MAX: 255 283s _SC_CHAR_MIN: 0 283s _SC_CHILD_MAX: 15897 283s _SC_C_LANG_SUPPORT: n/a 283s _SC_C_LANG_SUPPORT_R: n/a 283s _SC_CLK_TCK: 100 283s _SC_CLOCK_SELECTION: 200809 283s _SC_COLL_WEIGHTS_MAX: 255 283s _SC_CPUTIME: 200809 283s _SC_DELAYTIMER_MAX: 2147483647 283s _SC_DEVICE_IO: n/a 283s _SC_DEVICE_SPECIFIC: n/a 283s _SC_DEVICE_SPECIFIC_R: n/a 283s _SC_EQUIV_CLASS_MAX: n/a 283s _SC_EXPR_NEST_MAX: 32 283s _SC_FD_MGMT: n/a 283s _SC_FIFO: n/a 283s _SC_FILE_ATTRIBUTES: n/a 283s _SC_FILE_LOCKING: n/a 283s _SC_FILE_SYSTEM: n/a 283s _SC_FSYNC: 200809 283s _SC_GETGR_R_SIZE_MAX: 1024 283s _SC_GETPW_R_SIZE_MAX: 1024 283s _SC_HOST_NAME_MAX: 64 283s _SC_INT_MAX: 2147483647 283s _SC_INT_MIN: -2147483648 283s _SC_IOV_MAX: 1024 283s _SC_IPV6: 200809 283s _SC_JOB_CONTROL: 1 283s _SC_LEVEL1_DCACHE_ASSOC: 8 283s _SC_LEVEL1_DCACHE_LINESIZE: 256 283s _SC_LEVEL1_DCACHE_SIZE: 131072 283s _SC_LEVEL1_ICACHE_ASSOC: 8 283s _SC_LEVEL1_ICACHE_LINESIZE: 256 283s _SC_LEVEL1_ICACHE_SIZE: 131072 283s _SC_LEVEL2_CACHE_ASSOC: 8 283s _SC_LEVEL2_CACHE_LINESIZE: 256 283s _SC_LEVEL2_CACHE_SIZE: 4194304 283s _SC_LEVEL3_CACHE_ASSOC: 32 283s _SC_LEVEL3_CACHE_LINESIZE: 256 283s _SC_LEVEL3_CACHE_SIZE: 268435456 283s _SC_LEVEL4_CACHE_ASSOC: 60 283s _SC_LEVEL4_CACHE_LINESIZE: 256 283s _SC_LEVEL4_CACHE_SIZE: 1006632960 283s _SC_LINE_MAX: 2048 283s _SC_LOGIN_NAME_MAX: 256 283s _SC_LONG_BIT: 64 283s _SC_MAPPED_FILES: 200809 283s _SC_MB_LEN_MAX: 16 283s _SC_MEMLOCK: 200809 283s _SC_MEMLOCK_RANGE: 200809 283s _SC_MEMORY_PROTECTION: 200809 283s _SC_MESSAGE_PASSING: 200809 283s _SC_MONOTONIC_CLOCK: 200809 283s _SC_MQ_OPEN_MAX: n/a 283s _SC_MQ_PRIO_MAX: 32768 283s _SC_MULTI_PROCESS: n/a 283s _SC_NETWORKING: n/a 283s _SC_NGROUPS_MAX: 65536 283s _SC_NL_ARGMAX: 4096 283s _SC_NL_LANGMAX: 2048 283s _SC_NL_MSGMAX: 2147483647 283s _SC_NL_NMAX: 2147483647 283s _SC_NL_SETMAX: 2147483647 283s _SC_NL_TEXTMAX: 2147483647 283s _SC_NPROCESSORS_CONF: 2 283s _SC_NPROCESSORS_ONLN: 2 283s _SC_NZERO: 20 283s _SC_OPEN_MAX: 1024 283s _SC_PAGESIZE: 4096 283s _SC_PAGE_SIZE: 4096 283s _SC_PASS_MAX: 8192 283s _SC_PHYS_PAGES: 1023241 283s _SC_PII: n/a 283s _SC_PII_INTERNET: n/a 283s _SC_PII_INTERNET_DGRAM: n/a 283s _SC_PII_INTERNET_STREAM: n/a 283s _SC_PII_OSI: n/a 283s _SC_PII_OSI_CLTS: n/a 283s _SC_PII_OSI_COTS: n/a 283s _SC_PII_OSI_M: n/a 283s _SC_PII_SOCKET: n/a 283s _SC_PII_XTI: n/a 283s _SC_PIPE: n/a 283s _SC_POLL: n/a 283s _SC_SINGLE_PROCESS: n/a 283s _SC_SYSTEM_DATABASE: n/a 283s _SC_SYSTEM_DATABASE_R: n/a 283s _SC_THREAD_KEYS_MAX: 1024 283s _SC_THREAD_DESTRUCTOR_ITERATIONS: 4 283s _SC_THREAD_THREADS_MAX: n/a 283s _SC_STREAM_MAX: 16 283s _SC_SYMLOOP_MAX: n/a 283s _SC_TTY_NAME_MAX: 32 283s _SC_TZNAME_MAX: n/a 283s _SC_TYPED_MEMORY_OBJECTS: n/a 283s _SC_USER_GROUPS: n/a 283s _SC_USER_GROUPS_R: n/a 283s _SC_VERSION: 200809 283s _SC_SIGQUEUE_MAX: 15897 283s _SC_T_IOV_MAX: n/a 283s _SC_THREAD_STACK_MIN: 16384 283s _SC_SSIZE_MAX: 32767 283s _SC_TIMER_MAX: n/a 283s _SC_UCHAR_MAX: 255 283s _SC_UINT_MAX: 4294967295 283s _SC_UIO_MAXIOV: 1024 283s _SC_ULONG_MAX: n/a 283s _SC_USHRT_MAX: 65535 283s _SC_V6_LPBIG_OFFBIG: n/a 283s _SC_WORD_BIT: 32 283s _SC_EXPR_NEST_MAX: 32 283s _SC_V6_ILP32_OFF32: n/a 283s _SC_V6_ILP32_OFFBIG: n/a 283s _SC_V6_LP64_OFF64: 1 283s _SC_V7_ILP32_OFF32: n/a 283s _SC_V7_ILP32_OFFBIG: n/a 283s _SC_V7_LPBIG_OFFBIG: n/a 283s _SC_V7_LP64_OFF64: 1 283s _SC_PRIORITIZED_IO: 200809 283s _SC_PRIORITY_SCHEDULING: 200809 283s _SC_RAW_SOCKETS: 200809 283s _SC_READER_WRITER_LOCKS: 200809 283s _SC_REALTIME_SIGNALS: 200809 283s _SC_RE_DUP_MAX: 32767 283s _SC_REGEXP: 1 283s _SC_REGEX_VERSION: n/a 283s _SC_RTSIG_MAX: 32 283s _SC_SAVED_IDS: 1 283s _SC_SCHAR_MAX: 127 283s _SC_SCHAR_MIN: -128 283s _SC_SELECT: n/a 283s _SC_SEMAPHORES: 200809 283s _SC_SEM_NSEMS_MAX: n/a 283s _SC_SEM_VALUE_MAX: 2147483647 283s _SC_SHARED_MEMORY_OBJECTS: 200809 283s _SC_SHELL: 1 283s _SC_SHRT_MAX: 32767 283s _SC_SHRT_MIN: -32768 283s _SC_SIGNALS: n/a 283s _SC_SPAWN: 200809 283s _SC_SPIN_LOCKS: 200809 283s _SC_SPORADIC_SERVER: n/a 283s _SC_SYNCHRONIZED_IO: 200809 283s _SC_THREAD_ATTR_STACKADDR: 200809 283s _SC_THREAD_ATTR_STACKSIZE: 200809 283s _SC_THREAD_CPUTIME: 200809 283s _SC_THREAD_PRIO_INHERIT: 200809 283s _SC_THREAD_PRIO_PROTECT: 200809 283s _SC_THREAD_PRIORITY_SCHEDULING: 200809 283s _SC_THREAD_PROCESS_SHARED: 200809 283s _SC_THREAD_ROBUST_PRIO_INHERIT: n/a 283s _SC_THREAD_ROBUST_PRIO_PROTECT: n/a 283s _SC_THREAD_SAFE_FUNCTIONS: 200809 283s _SC_THREAD_SPORADIC_SERVER: n/a 283s _SC_THREADS: 200809 283s _SC_TIMEOUTS: 200809 283s _SC_TIMERS: 200809 283s _SC_TRACE: n/a 283s _SC_TRACE_EVENT_FILTER: n/a 283s _SC_TRACE_INHERIT: n/a 283s _SC_TRACE_LOG: n/a 283s _SC_XBS5_ILP32_OFF32: n/a 283s _SC_XBS5_ILP32_OFFBIG: n/a 283s _SC_XBS5_LP64_OFF64: 1 283s _SC_XBS5_LPBIG_OFFBIG: n/a 283s _SC_XOPEN_CRYPT: n/a 283s _SC_XOPEN_ENH_I18N: 1 283s _SC_XOPEN_LEGACY: 1 283s _SC_XOPEN_REALTIME: 1 283s _SC_XOPEN_REALTIME_THREADS: 1 283s _SC_XOPEN_SHM: 1 283s _SC_XOPEN_UNIX: 1 283s _SC_XOPEN_XPG2: 1 283s _SC_XOPEN_XPG3: 1 283s _SC_XOPEN_XPG4: 1 283s _SC_XOPEN_VERSION: 700 283s _SC_XOPEN_XCU_VERSION: 4 283s threads: 283s stack size: 8388608 bytes 283s scope: PTHREAD_SCOPE_SYSTEM 283s guard size: 4096 bytes 283s scheduler: 283s type: SCHED_OTHER 283s priority: 0 283s inherit-scheduler attribute: PTHREAD_INHERIT_SCHED 283s concurrency: 0 283s time: 283s raw: 1740010629.366546689 283s local: Thu Feb 20 00:17:09 2025 283s ISO: 2025-01-20T00:17 283s timezone: 283s tzname[0]: 'UTC' 283s tzname[1]: 'UTC' 283s timezone: 0 283s daylight: 0 283s tty: 283s uname: 283s sysname: Linux 283s nodename: autopkgtest 283s release: 6.12.0-15-generic 283s version: #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 283s machine: s390x 283s domainname: (none) 283s PASS: procenv 283s ================== 283s All 4 tests passed 283s ================== 283s make[3]: Leaving directory '/build/reproducible-path/procenv-0.51/src' 283s make[2]: Leaving directory '/build/reproducible-path/procenv-0.51/src' 283s make[2]: Entering directory '/build/reproducible-path/procenv-0.51' 283s make[2]: Leaving directory '/build/reproducible-path/procenv-0.51' 283s make[1]: Leaving directory '/build/reproducible-path/procenv-0.51' 283s fakeroot debian/rules binary 283s dh binary --with autoreconf 283s dh: warning: Compatibility levels before 10 are deprecated (level 9 in use) 283s dh_testroot 283s dh_prep 283s dh_auto_install --destdir=debian/procenv/ 283s dh_auto_install: warning: Compatibility levels before 10 are deprecated (level 9 in use) 283s make -j1 install DESTDIR=/build/reproducible-path/procenv-0.51/debian/procenv AM_UPDATE_INFO_DIR=no 283s make[1]: Entering directory '/build/reproducible-path/procenv-0.51' 283s Making install in src 283s make[2]: Entering directory '/build/reproducible-path/procenv-0.51/src' 283s make[3]: Entering directory '/build/reproducible-path/procenv-0.51/src' 283s /usr/bin/mkdir -p '/build/reproducible-path/procenv-0.51/debian/procenv/usr/bin' 283s /usr/bin/install -c procenv '/build/reproducible-path/procenv-0.51/debian/procenv/usr/bin' 283s make[3]: Nothing to be done for 'install-data-am'. 283s make[3]: Leaving directory '/build/reproducible-path/procenv-0.51/src' 283s make[2]: Leaving directory '/build/reproducible-path/procenv-0.51/src' 283s make[2]: Entering directory '/build/reproducible-path/procenv-0.51' 283s make[3]: Entering directory '/build/reproducible-path/procenv-0.51' 283s make[3]: Nothing to be done for 'install-exec-am'. 283s /usr/bin/mkdir -p '/build/reproducible-path/procenv-0.51/debian/procenv/usr/share/man/man1' 283s /usr/bin/install -c -m 644 man/procenv.1 '/build/reproducible-path/procenv-0.51/debian/procenv/usr/share/man/man1' 283s make[3]: Leaving directory '/build/reproducible-path/procenv-0.51' 283s make[2]: Leaving directory '/build/reproducible-path/procenv-0.51' 283s make[1]: Leaving directory '/build/reproducible-path/procenv-0.51' 283s dh_installdocs 283s dh_installdocs: warning: Compatibility levels before 10 are deprecated (level 9 in use) 283s dh_installchangelogs 283s dh_installchangelogs: warning: Compatibility levels before 10 are deprecated (level 9 in use) 283s dh_installman 283s dh_installman: warning: Compatibility levels before 10 are deprecated (level 9 in use) 283s dh_perl 283s dh_link 283s dh_link: warning: Compatibility levels before 10 are deprecated (level 9 in use) 283s dh_strip_nondeterminism 283s dh_compress 283s dh_compress: warning: Compatibility levels before 10 are deprecated (level 9 in use) 283s dh_fixperms 284s dh_missing 284s dh_missing: warning: Compatibility levels before 10 are deprecated (level 9 in use) 284s dh_strip 284s dh_strip: warning: Compatibility levels before 10 are deprecated (level 9 in use) 284s cb5c617162ea727c6881f4687eb271524eba0a60 284s dh_makeshlibs 284s dh_makeshlibs: warning: Compatibility levels before 10 are deprecated (level 9 in use) 284s dh_shlibdeps 284s dh_shlibdeps: warning: Compatibility levels before 10 are deprecated (level 9 in use) 284s dh_installdeb 284s dh_installdeb: warning: Compatibility levels before 10 are deprecated (level 9 in use) 284s dh_gencontrol 284s dh_gencontrol: warning: Compatibility levels before 10 are deprecated (level 9 in use) 284s dh_md5sums 284s dh_builddeb 284s dpkg-deb: building package 'procenv' in '../procenv_0.51-0.2_s390x.deb'. 284s dpkg-deb: building package 'procenv-dbgsym' in 'debian/.debhelper/scratch-space/build-procenv/procenv-dbgsym_0.51-0.2_s390x.deb'. 285s Renaming procenv-dbgsym_0.51-0.2_s390x.deb to procenv-dbgsym_0.51-0.2_s390x.ddeb 285s dpkg-genbuildinfo --build=binary -O../procenv_0.51-0.2_s390x.buildinfo 285s dpkg-genchanges --build=binary -O../procenv_0.51-0.2_s390x.changes 285s dpkg-genchanges: info: binary-only upload (no source code included) 285s dpkg-source --after-build . 285s dpkg-buildpackage: info: binary-only upload (no source included) 285s -------------------------------------------------------------------------------- 285s Build finished at 2025-02-20T00:17:11Z 285s 285s Finished 285s -------- 285s 285s I: Built successfully 285s 285s +------------------------------------------------------------------------------+ 285s | Changes Thu, 20 Feb 2025 00:17:11 +0000 | 285s +------------------------------------------------------------------------------+ 285s 285s 285s procenv_0.51-0.2_s390x.changes: 285s ------------------------------- 285s 285s Format: 1.8 285s Date: Fri, 11 Dec 2020 14:51:56 +0100 285s Source: procenv 285s Binary: procenv 285s Built-For-Profiles: noudeb 285s Architecture: s390x 285s Version: 0.51-0.2 285s Distribution: plucky 285s Urgency: medium 285s Maintainer: James Hunt 285s Changed-By: Gianfranco Costamagna 285s Description: 285s procenv - Utility to show process environment 285s Closes: 976833 285s Changes: 285s procenv (0.51-0.2) unstable; urgency=medium 285s . 285s * Non-maintainer upload. 285s * Change maintainer address to the one used to develop on github. (Closes: 285s #976833) 285s Checksums-Sha1: 285s e37c53a26e8dc9285c87911f2e3af9b4b272509f 159036 procenv-dbgsym_0.51-0.2_s390x.ddeb 285s b5728aed862e99316e59362a74e65734b627efbd 5956 procenv_0.51-0.2_s390x.buildinfo 285s 0ffa5a74e3e19cc9b61ed65bfaf1097d1a957c67 72754 procenv_0.51-0.2_s390x.deb 285s Checksums-Sha256: 285s 968f897d93bf321fba46c05b102ba38bfd83fc424a9c9bdb8601110481f9992e 159036 procenv-dbgsym_0.51-0.2_s390x.ddeb 285s 9e72985dbe6464d976cf2298509d9a0e3ee5a94dd327437c410b270ca69b266b 5956 procenv_0.51-0.2_s390x.buildinfo 285s 30cc9b17efa756d438eacaabf6ec3e87166eed6d8b20fe51907e101f61f1e5e3 72754 procenv_0.51-0.2_s390x.deb 285s Files: 285s 1de9e8cc07f4523663557a0d195b6dff 159036 debug optional procenv-dbgsym_0.51-0.2_s390x.ddeb 285s b8901b6ae379d03856607beadc7c1197 5956 utils optional procenv_0.51-0.2_s390x.buildinfo 285s d4cec0681f432bc09eec64270bbcf734 72754 utils optional procenv_0.51-0.2_s390x.deb 285s 285s +------------------------------------------------------------------------------+ 285s | Buildinfo Thu, 20 Feb 2025 00:17:11 +0000 | 285s +------------------------------------------------------------------------------+ 285s 285s Format: 1.0 285s Source: procenv 285s Binary: procenv procenv-dbgsym 285s Architecture: s390x 285s Version: 0.51-0.2 285s Checksums-Md5: 285s 1de9e8cc07f4523663557a0d195b6dff 159036 procenv-dbgsym_0.51-0.2_s390x.ddeb 285s d4cec0681f432bc09eec64270bbcf734 72754 procenv_0.51-0.2_s390x.deb 285s Checksums-Sha1: 285s e37c53a26e8dc9285c87911f2e3af9b4b272509f 159036 procenv-dbgsym_0.51-0.2_s390x.ddeb 285s 0ffa5a74e3e19cc9b61ed65bfaf1097d1a957c67 72754 procenv_0.51-0.2_s390x.deb 285s Checksums-Sha256: 285s 968f897d93bf321fba46c05b102ba38bfd83fc424a9c9bdb8601110481f9992e 159036 procenv-dbgsym_0.51-0.2_s390x.ddeb 285s 30cc9b17efa756d438eacaabf6ec3e87166eed6d8b20fe51907e101f61f1e5e3 72754 procenv_0.51-0.2_s390x.deb 285s Build-Origin: Ubuntu 285s Build-Architecture: s390x 285s Build-Date: Thu, 20 Feb 2025 00:17:11 +0000 285s Build-Path: /build/reproducible-path/procenv-0.51 285s Build-Tainted-By: 285s merged-usr-via-aliased-dirs 285s Installed-Build-Depends: 285s autoconf (= 2.72-3), 285s automake (= 1:1.17-3), 285s autopoint (= 0.23.1-1), 285s autotools-dev (= 20220109.1), 285s base-files (= 13.5ubuntu3), 285s base-passwd (= 3.6.6), 285s bash (= 5.2.37-1ubuntu1), 285s binutils (= 2.44-1ubuntu1), 285s binutils-common (= 2.44-1ubuntu1), 285s binutils-s390x-linux-gnu (= 2.44-1ubuntu1), 285s bsdextrautils (= 2.40.2-14ubuntu1), 285s bsdutils (= 1:2.40.2-14ubuntu1), 285s build-essential (= 12.10ubuntu1), 285s bzip2 (= 1.0.8-6), 285s check (= 0.15.2-3), 285s coreutils (= 9.5-1ubuntu1), 285s cpp (= 4:14.2.0-1ubuntu1), 285s cpp-14 (= 14.2.0-17ubuntu1), 285s cpp-14-s390x-linux-gnu (= 14.2.0-17ubuntu1), 285s cpp-s390x-linux-gnu (= 4:14.2.0-1ubuntu1), 285s dash (= 0.5.12-12ubuntu1), 285s debconf (= 1.5.87ubuntu1), 285s debhelper (= 13.24.1ubuntu2), 285s debianutils (= 5.21), 285s debugedit (= 1:5.1-2), 285s dh-autoreconf (= 20), 285s dh-strip-nondeterminism (= 1.14.1-2), 285s diffutils (= 1:3.10-2), 285s dpkg (= 1.22.11ubuntu4), 285s dpkg-dev (= 1.22.11ubuntu4), 285s dwz (= 0.15-1build6), 285s expat (= 2.6.4-1), 285s file (= 1:5.45-3build1), 285s findutils (= 4.10.0-3), 285s g++ (= 4:14.2.0-1ubuntu1), 285s g++-14 (= 14.2.0-17ubuntu1), 285s g++-14-s390x-linux-gnu (= 14.2.0-17ubuntu1), 285s g++-s390x-linux-gnu (= 4:14.2.0-1ubuntu1), 285s gcc (= 4:14.2.0-1ubuntu1), 285s gcc-14 (= 14.2.0-17ubuntu1), 285s gcc-14-base (= 14.2.0-17ubuntu1), 285s gcc-14-s390x-linux-gnu (= 14.2.0-17ubuntu1), 285s gcc-15-base (= 15-20250213-1ubuntu1), 285s gcc-s390x-linux-gnu (= 4:14.2.0-1ubuntu1), 285s gettext (= 0.23.1-1), 285s gettext-base (= 0.23.1-1), 285s grep (= 3.11-4build1), 285s groff-base (= 1.23.0-7), 285s gzip (= 1.13-1ubuntu2), 285s hostname (= 3.25), 285s init-system-helpers (= 1.68), 285s intltool-debian (= 0.35.0+20060710.6), 285s libacl1 (= 2.3.2-2), 285s libapparmor-dev (= 4.1.0~beta5-0ubuntu2), 285s libapparmor1 (= 4.1.0~beta5-0ubuntu2), 285s libarchive-zip-perl (= 1.68-1), 285s libasan8 (= 15-20250213-1ubuntu1), 285s libatomic1 (= 15-20250213-1ubuntu1), 285s libattr1 (= 1:2.5.2-2), 285s libaudit-common (= 1:4.0.2-2ubuntu1), 285s libaudit1 (= 1:4.0.2-2ubuntu1), 285s libbinutils (= 2.44-1ubuntu1), 285s libblkid1 (= 2.40.2-14ubuntu1), 285s libbz2-1.0 (= 1.0.8-6), 285s libc-bin (= 2.40-4ubuntu1), 285s libc-dev-bin (= 2.40-4ubuntu1), 285s libc6 (= 2.40-4ubuntu1), 285s libc6-dev (= 2.40-4ubuntu1), 285s libcap-dev (= 1:2.66-5ubuntu3), 285s libcap-ng0 (= 0.8.5-4), 285s libcap2 (= 1:2.66-5ubuntu3), 285s libcc1-0 (= 15-20250213-1ubuntu1), 285s libcrypt-dev (= 1:4.4.38-1), 285s libcrypt1 (= 1:4.4.38-1), 285s libctf-nobfd0 (= 2.44-1ubuntu1), 285s libctf0 (= 2.44-1ubuntu1), 285s libdb5.3t64 (= 5.3.28+dfsg2-9), 285s libdebconfclient0 (= 0.274ubuntu1), 285s libdebhelper-perl (= 13.24.1ubuntu2), 285s libdpkg-perl (= 1.22.11ubuntu4), 285s libdw1t64 (= 0.192-4), 285s libelf1t64 (= 0.192-4), 285s libexpat1 (= 2.6.4-1), 285s libfile-stripnondeterminism-perl (= 1.14.1-2), 285s libgcc-14-dev (= 14.2.0-17ubuntu1), 285s libgcc-s1 (= 15-20250213-1ubuntu1), 285s libgdbm-compat4t64 (= 1.24-2), 285s libgdbm6t64 (= 1.24-2), 285s libgmp10 (= 2:6.3.0+dfsg-2ubuntu7), 285s libgomp1 (= 15-20250213-1ubuntu1), 285s libisl23 (= 0.27-1), 285s libitm1 (= 15-20250213-1ubuntu1), 285s libjansson4 (= 2.14-2build2), 285s liblzma5 (= 5.6.3-1), 285s libmagic-mgc (= 1:5.45-3build1), 285s libmagic1t64 (= 1:5.45-3build1), 285s libmd0 (= 1.1.0-2build2), 285s libmount1 (= 2.40.2-14ubuntu1), 285s libmpc3 (= 1.3.1-1build2), 285s libmpfr6 (= 4.2.1-1build2), 285s libpam-modules (= 1.5.3-7ubuntu4), 285s libpam-modules-bin (= 1.5.3-7ubuntu4), 285s libpam-runtime (= 1.5.3-7ubuntu4), 285s libpam0g (= 1.5.3-7ubuntu4), 285s libpcre2-16-0 (= 10.42-4ubuntu3), 285s libpcre2-32-0 (= 10.42-4ubuntu3), 285s libpcre2-8-0 (= 10.42-4ubuntu3), 285s libpcre2-dev (= 10.42-4ubuntu3), 285s libpcre2-posix3 (= 10.42-4ubuntu3), 285s libperl5.40 (= 5.40.0-8), 285s libpipeline1 (= 1.5.8-1), 285s libpkgconf3 (= 1.8.1-4), 285s libseccomp2 (= 2.5.5-1ubuntu5), 285s libselinux1 (= 3.7-3ubuntu2), 285s libselinux1-dev (= 3.7-3ubuntu2), 285s libsepol-dev (= 3.7-1), 285s libsepol2 (= 3.7-1), 285s libsframe1 (= 2.44-1ubuntu1), 285s libsmartcols1 (= 2.40.2-14ubuntu1), 285s libssl3t64 (= 3.4.0-1ubuntu2), 285s libstdc++-14-dev (= 14.2.0-17ubuntu1), 285s libstdc++6 (= 15-20250213-1ubuntu1), 285s libsubunit-dev (= 1.4.2-3build1), 285s libsubunit0 (= 1.4.2-3build1), 285s libsystemd0 (= 257.2-3ubuntu1), 285s libtinfo6 (= 6.5+20250125-2), 285s libtool (= 2.5.4-3build1), 285s libubsan1 (= 15-20250213-1ubuntu1), 285s libuchardet0 (= 0.0.8-1build1), 285s libudev1 (= 257.2-3ubuntu1), 285s libunistring5 (= 1.3-1), 285s libuuid1 (= 2.40.2-14ubuntu1), 285s libxml2 (= 2.12.7+dfsg+really2.9.14-0.2ubuntu3), 285s libzstd1 (= 1.5.6+dfsg-2), 285s linux-libc-dev (= 6.12.0-15.15), 285s lto-disabled-list (= 55), 285s m4 (= 1.4.19-5), 285s make (= 4.4.1-1), 285s man-db (= 2.13.0-1), 285s mawk (= 1.3.4.20250131-1), 285s ncurses-base (= 6.5+20250125-2), 285s ncurses-bin (= 6.5+20250125-2), 285s openssl-provider-legacy (= 3.4.0-1ubuntu2), 285s patch (= 2.7.6-7build3), 285s perl (= 5.40.0-8), 285s perl-base (= 5.40.0-8), 285s perl-modules-5.40 (= 5.40.0-8), 285s pkg-config (= 1.8.1-4), 285s pkgconf (= 1.8.1-4), 285s pkgconf-bin (= 1.8.1-4), 285s po-debconf (= 1.0.21+nmu1), 285s rpcsvc-proto (= 1.4.2-0ubuntu7), 285s sed (= 4.9-2build1), 285s sensible-utils (= 0.0.24), 285s sysvinit-utils (= 3.14-1ubuntu1), 285s tar (= 1.35+dfsg-3.1), 285s util-linux (= 2.40.2-14ubuntu1), 285s xz-utils (= 5.6.3-1), 285s zlib1g (= 1:1.3.dfsg+really1.3.1-1ubuntu1) 285s Environment: 285s DEB_BUILD_OPTIONS="parallel=2" 285s DEB_BUILD_PROFILES="noudeb" 285s LANG="C.UTF-8" 285s LC_COLLATE="C.UTF-8" 285s LC_CTYPE="C.UTF-8" 285s SOURCE_DATE_EPOCH="1607694716" 285s 285s 285s +------------------------------------------------------------------------------+ 285s | Package contents Thu, 20 Feb 2025 00:17:11 +0000 | 285s +------------------------------------------------------------------------------+ 285s 285s 285s procenv_0.51-0.2_s390x.deb 285s -------------------------- 285s 285s new Debian package, version 2.0. 285s size 72754 bytes: control archive=718 bytes. 285s 571 bytes, 14 lines control 285s 383 bytes, 6 lines md5sums 285s Package: procenv 285s Version: 0.51-0.2 285s Architecture: s390x 285s Maintainer: James Hunt 285s Installed-Size: 206 285s Depends: libc6 (>= 2.38), libcap2 (>= 1:2.10), libselinux1 (>= 3.1~) 285s Section: utils 285s Priority: optional 285s Homepage: https://github.com/jamesodhunt/procenv 285s Description: Utility to show process environment 285s This package contains a command-line tool that displays as much 285s detail about itself and its environment as possible. It can be 285s used as a test tool, to understand the type of environment a 285s process runs in, and for comparing system environments. 285s 285s drwxr-xr-x root/root 0 2020-12-11 13:51 ./ 285s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/ 285s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/bin/ 285s -rwxr-xr-x root/root 185872 2020-12-11 13:51 ./usr/bin/procenv 285s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/ 285s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/doc/ 285s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/doc/procenv/ 285s -rw-r--r-- root/root 3862 2019-08-02 20:40 ./usr/share/doc/procenv/NEWS.gz 285s lrwxrwxrwx root/root 0 2020-12-11 13:51 ./usr/share/doc/procenv/README -> README.rst 285s -rw-r--r-- root/root 2844 2019-08-02 20:40 ./usr/share/doc/procenv/TODO 285s -rw-r--r-- root/root 649 2020-12-11 13:51 ./usr/share/doc/procenv/changelog.Debian.gz 285s -rw-r--r-- root/root 1140 2020-08-11 13:14 ./usr/share/doc/procenv/copyright 285s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/man/ 285s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/man/man1/ 285s -rw-r--r-- root/root 4021 2020-12-11 13:51 ./usr/share/man/man1/procenv.1.gz 285s 285s 285s lintian 285s ------- 285s 285s 285s Setup apt archive 285s ----------------- 285s 285s Merged Build-Depends: lintian 285s Filtered Build-Depends: lintian 285s dpkg-deb: building package 'sbuild-build-depends-lintian-dummy' in '/build/reproducible-path/resolver-oC6JDK/apt_archive/sbuild-build-depends-lintian-dummy.deb'. 285s Ign:1 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ InRelease 285s Get:2 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Release [615 B] 285s Ign:3 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Release.gpg 285s Get:4 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Sources [2094 B] 285s Get:5 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Packages [1976 B] 285s Fetched 4685 B in 0s (0 B/s) 285s Reading package lists... 286s Reading package lists... 286s 286s Install lintian build dependencies (apt-based resolver) 286s ------------------------------------------------------- 286s 286s Installing build dependencies 286s Reading package lists... 286s Building dependency tree... 286s Reading state information... 286s The following additional packages will be installed: 286s appstream ca-certificates diffstat gpg gpgconf iso-codes libaliased-perl 286s libappstream5 libapt-pkg-perl libapt-pkg6.0t64 libb-hooks-endofscope-perl 286s libb-hooks-op-check-perl libberkeleydb-perl libbrotli1 libcapture-tiny-perl 286s libcgi-pm-perl libclass-data-inheritable-perl libclass-inspector-perl 286s libclass-method-modifiers-perl libclass-xsaccessor-perl libclone-perl 286s libconfig-tiny-perl libconst-fast-perl libcpanel-json-xs-perl 286s libcurl3t64-gnutls libdata-dpath-perl libdata-messagepack-perl 286s libdata-optlist-perl libdata-validate-domain-perl libdata-validate-ip-perl 286s libdata-validate-uri-perl libdevel-callchecker-perl libdevel-size-perl 286s libdevel-stacktrace-perl libdynaloader-functions-perl 286s libemail-address-xs-perl libencode-locale-perl libexception-class-perl 286s libffi8 libfile-basedir-perl libfile-find-rule-perl libfile-listing-perl 286s libfile-sharedir-perl libfont-ttf-perl libglib2.0-0t64 libgnutls30t64 286s libgssapi-krb5-2 libhogweed6t64 libhtml-form-perl 286s libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl 286s libhtml-tokeparser-simple-perl libhtml-tree-perl libhttp-cookies-perl 286s libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libidn2-0 286s libimport-into-perl libio-html-perl libio-interactive-perl 286s libio-socket-ssl-perl libio-string-perl libipc-run3-perl 286s libipc-system-simple-perl libiterator-perl libiterator-util-perl 286s libjson-maybexs-perl libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 286s libldap-common libldap2 liblist-compare-perl liblist-someutils-perl 286s liblist-utilsby-perl liblwp-mediatypes-perl liblwp-protocol-https-perl 286s liblzo2-2 libmarkdown2 libmldbm-perl libmodule-implementation-perl 286s libmodule-runtime-perl libmoo-perl libmoox-aliases-perl libmouse-perl 286s libnamespace-clean-perl libnet-domain-tld-perl libnet-http-perl 286s libnet-ipv6addr-perl libnet-netmask-perl libnet-ssleay-perl 286s libnetaddr-ip-perl libnettle8t64 libnghttp2-14 libnumber-compare-perl 286s libp11-kit0 libpackage-stash-perl libparams-classify-perl 286s libparams-util-perl libpath-tiny-perl libperlio-gzip-perl 286s libperlio-utf8-strict-perl libproc-processtable-perl libpsl5t64 286s libreadline8t64 libregexp-wildcards-perl librole-tiny-perl librtmp1 286s libsasl2-2 libsasl2-modules-db libsereal-decoder-perl libsereal-encoder-perl 286s libsort-versions-perl libsqlite3-0 libssh2-1t64 libstemmer0d 286s libstrictures-perl libsub-exporter-perl libsub-exporter-progressive-perl 286s libsub-identify-perl libsub-install-perl libsub-name-perl libsub-quote-perl 286s libsyntax-keyword-try-perl libtasn1-6 libterm-readkey-perl 286s libtext-charwidth-perl libtext-glob-perl libtext-levenshteinxs-perl 286s libtext-markdown-discount-perl libtext-wrapi18n-perl libtext-xslate-perl 286s libtime-duration-perl libtime-moment-perl libtimedate-perl libtry-tiny-perl 286s libunicode-utf8-perl liburi-perl libvariable-magic-perl 286s libwww-mechanize-perl libwww-perl libwww-robotrules-perl libxml-libxml-perl 286s libxml-namespacesupport-perl libxml-sax-base-perl libxml-sax-perl libxmlb2 286s libxs-parse-keyword-perl libyaml-0-2 libyaml-libyaml-perl lintian lzip lzop 286s netbase openssl patchutils perl-openssl-defaults readline-common 286s shared-mime-info t1utils ucf unzip 286s Suggested packages: 286s apt-config-icons gnupg keyboxd isoquery libxml-parser-perl 286s low-memory-monitor gnutls-bin krb5-doc krb5-user libdata-dump-perl 286s libio-compress-brotli-perl libcrypt-ssleay-perl libscalar-number-perl 286s libbareword-filehandles-perl libindirect-perl libmultidimensional-perl 286s libxstring-perl libbusiness-isbn-perl libmime-base32-perl 286s libregexp-ipv6-perl libauthen-ntlm-perl binutils-multiarch 286s libtext-template-perl readline-doc zip 286s Recommended packages: 286s dirmngr gpg-agent libcgi-fast-perl libglib2.0-data xdg-user-dirs 286s libhtml-format-perl krb5-locales liblist-someutils-xs-perl 286s libfreezethaw-perl libmath-base85-perl libsocket6-perl 286s libpackage-stash-xs-perl publicsuffix libsasl2-modules libdata-dump-perl 286s libhttp-daemon-perl libmailtools-perl libxml-sax-expat-perl 286s The following NEW packages will be installed: 287s appstream ca-certificates diffstat gpg gpgconf iso-codes libaliased-perl 287s libappstream5 libapt-pkg-perl libapt-pkg6.0t64 libb-hooks-endofscope-perl 287s libb-hooks-op-check-perl libberkeleydb-perl libbrotli1 libcapture-tiny-perl 287s libcgi-pm-perl libclass-data-inheritable-perl libclass-inspector-perl 287s libclass-method-modifiers-perl libclass-xsaccessor-perl libclone-perl 287s libconfig-tiny-perl libconst-fast-perl libcpanel-json-xs-perl 287s libcurl3t64-gnutls libdata-dpath-perl libdata-messagepack-perl 287s libdata-optlist-perl libdata-validate-domain-perl libdata-validate-ip-perl 287s libdata-validate-uri-perl libdevel-callchecker-perl libdevel-size-perl 287s libdevel-stacktrace-perl libdynaloader-functions-perl 287s libemail-address-xs-perl libencode-locale-perl libexception-class-perl 287s libffi8 libfile-basedir-perl libfile-find-rule-perl libfile-listing-perl 287s libfile-sharedir-perl libfont-ttf-perl libglib2.0-0t64 libgnutls30t64 287s libgssapi-krb5-2 libhogweed6t64 libhtml-form-perl 287s libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl 287s libhtml-tokeparser-simple-perl libhtml-tree-perl libhttp-cookies-perl 287s libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libidn2-0 287s libimport-into-perl libio-html-perl libio-interactive-perl 287s libio-socket-ssl-perl libio-string-perl libipc-run3-perl 287s libipc-system-simple-perl libiterator-perl libiterator-util-perl 287s libjson-maybexs-perl libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 287s libldap-common libldap2 liblist-compare-perl liblist-someutils-perl 287s liblist-utilsby-perl liblwp-mediatypes-perl liblwp-protocol-https-perl 287s liblzo2-2 libmarkdown2 libmldbm-perl libmodule-implementation-perl 287s libmodule-runtime-perl libmoo-perl libmoox-aliases-perl libmouse-perl 287s libnamespace-clean-perl libnet-domain-tld-perl libnet-http-perl 287s libnet-ipv6addr-perl libnet-netmask-perl libnet-ssleay-perl 287s libnetaddr-ip-perl libnettle8t64 libnghttp2-14 libnumber-compare-perl 287s libp11-kit0 libpackage-stash-perl libparams-classify-perl 287s libparams-util-perl libpath-tiny-perl libperlio-gzip-perl 287s libperlio-utf8-strict-perl libproc-processtable-perl libpsl5t64 287s libreadline8t64 libregexp-wildcards-perl librole-tiny-perl librtmp1 287s libsasl2-2 libsasl2-modules-db libsereal-decoder-perl libsereal-encoder-perl 287s libsort-versions-perl libsqlite3-0 libssh2-1t64 libstemmer0d 287s libstrictures-perl libsub-exporter-perl libsub-exporter-progressive-perl 287s libsub-identify-perl libsub-install-perl libsub-name-perl libsub-quote-perl 287s libsyntax-keyword-try-perl libtasn1-6 libterm-readkey-perl 287s libtext-charwidth-perl libtext-glob-perl libtext-levenshteinxs-perl 287s libtext-markdown-discount-perl libtext-wrapi18n-perl libtext-xslate-perl 287s libtime-duration-perl libtime-moment-perl libtimedate-perl libtry-tiny-perl 287s libunicode-utf8-perl liburi-perl libvariable-magic-perl 287s libwww-mechanize-perl libwww-perl libwww-robotrules-perl libxml-libxml-perl 287s libxml-namespacesupport-perl libxml-sax-base-perl libxml-sax-perl libxmlb2 287s libxs-parse-keyword-perl libyaml-0-2 libyaml-libyaml-perl lintian lzip lzop 287s netbase openssl patchutils perl-openssl-defaults readline-common 287s sbuild-build-depends-lintian-dummy shared-mime-info t1utils ucf unzip 287s 0 upgraded, 166 newly installed, 0 to remove and 0 not upgraded. 287s Need to get 20.9 MB of archives. 287s After this operation, 78.5 MB of additional disk space will be used. 287s Get:1 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ sbuild-build-depends-lintian-dummy 0.invalid.0 [626 B] 287s Get:2 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x openssl s390x 3.4.0-1ubuntu2 [1181 kB] 287s Get:3 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x ca-certificates all 20241223 [165 kB] 287s Get:4 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x iso-codes all 4.17.0-1 [3612 kB] 287s Get:5 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libapt-pkg6.0t64 s390x 2.9.29 [1105 kB] 287s Get:6 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libffi8 s390x 3.4.7-1 [23.1 kB] 287s Get:7 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libglib2.0-0t64 s390x 2.83.3-2 [1583 kB] 287s Get:8 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnettle8t64 s390x 3.10.1-1 [210 kB] 287s Get:9 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhogweed6t64 s390x 3.10.1-1 [204 kB] 287s Get:10 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libidn2-0 s390x 2.3.7-2build2 [66.7 kB] 287s Get:11 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 287s Get:12 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 287s Get:13 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libgnutls30t64 s390x 3.8.9-2ubuntu1 [955 kB] 287s Get:14 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libkrb5support0 s390x 1.21.3-4ubuntu1 [35.3 kB] 288s Get:15 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libk5crypto3 s390x 1.21.3-4ubuntu1 [90.0 kB] 288s Get:16 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libkeyutils1 s390x 1.6.3-4ubuntu2 [9960 B] 288s Get:17 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libkrb5-3 s390x 1.21.3-4ubuntu1 [355 kB] 288s Get:18 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libgssapi-krb5-2 s390x 1.21.3-4ubuntu1 [149 kB] 288s Get:19 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x readline-common all 8.2-6 [56.5 kB] 288s Get:20 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libreadline8t64 s390x 8.2-6 [170 kB] 288s Get:21 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsqlite3-0 s390x 3.46.1-1 [746 kB] 288s Get:22 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtext-charwidth-perl s390x 0.04-11build4 [9646 B] 288s Get:23 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtext-wrapi18n-perl all 0.06-10 [7694 B] 288s Get:24 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libyaml-0-2 s390x 0.2.5-2 [54.8 kB] 288s Get:25 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x netbase all 6.4 [13.1 kB] 288s Get:26 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x shared-mime-info s390x 2.4-5 [474 kB] 288s Get:27 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x ucf all 3.0049 [43.3 kB] 288s Get:28 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnghttp2-14 s390x 1.64.0-1 [77.2 kB] 288s Get:29 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpsl5t64 s390x 0.21.2-1.1build1 [57.7 kB] 288s Get:30 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libbrotli1 s390x 1.1.0-2build3 [378 kB] 288s Get:31 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsasl2-modules-db s390x 2.1.28+dfsg1-8build1 [21.1 kB] 288s Get:32 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsasl2-2 s390x 2.1.28+dfsg1-8build1 [56.8 kB] 288s Get:33 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libldap-common all 2.6.9+dfsg-1~exp2ubuntu1 [33.2 kB] 288s Get:34 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libldap2 s390x 2.6.9+dfsg-1~exp2ubuntu1 [204 kB] 288s Get:35 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x librtmp1 s390x 2.4+20151223.gitfa8646d.1-2build7 [58.4 kB] 288s Get:36 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libssh2-1t64 s390x 1.11.1-1 [142 kB] 288s Get:37 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libcurl3t64-gnutls s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [393 kB] 288s Get:38 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libstemmer0d s390x 2.2.0-4build1 [174 kB] 288s Get:39 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxmlb2 s390x 0.3.21-1 [69.2 kB] 288s Get:40 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libappstream5 s390x 1.0.4-1 [236 kB] 288s Get:41 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x appstream s390x 1.0.4-1 [72.2 kB] 288s Get:42 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x diffstat s390x 1.67-1 [33.1 kB] 288s Get:43 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x gpgconf s390x 2.4.4-2ubuntu22 [110 kB] 288s Get:44 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x gpg s390x 2.4.4-2ubuntu22 [591 kB] 288s Get:45 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libaliased-perl all 0.34-3 [12.8 kB] 288s Get:46 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libapt-pkg-perl s390x 0.1.40build8 [70.7 kB] 288s Get:47 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libb-hooks-op-check-perl s390x 0.22-3build2 [9566 B] 288s Get:48 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdynaloader-functions-perl all 0.004-1 [11.4 kB] 288s Get:49 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdevel-callchecker-perl s390x 0.009-1build1 [14.2 kB] 288s Get:50 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libparams-classify-perl s390x 0.015-2build6 [20.6 kB] 288s Get:51 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmodule-runtime-perl all 0.016-2 [16.4 kB] 288s Get:52 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtry-tiny-perl all 0.32-1 [21.2 kB] 288s Get:53 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmodule-implementation-perl all 0.09-2 [12.0 kB] 288s Get:54 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsub-exporter-progressive-perl all 0.001013-3 [6718 B] 288s Get:55 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libvariable-magic-perl s390x 0.64-1build1 [36.4 kB] 288s Get:56 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libb-hooks-endofscope-perl all 0.28-1 [15.8 kB] 288s Get:57 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libberkeleydb-perl s390x 0.66-1 [115 kB] 288s Get:58 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libcapture-tiny-perl all 0.50-1 [20.7 kB] 288s Get:59 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhtml-tagset-perl all 3.24-1 [14.1 kB] 288s Get:60 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liburi-perl all 5.30-1 [94.4 kB] 288s Get:61 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhtml-parser-perl s390x 3.83-1build1 [87.8 kB] 288s Get:62 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libcgi-pm-perl all 4.67-1 [185 kB] 288s Get:63 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libclass-data-inheritable-perl all 0.10-1 [8038 B] 288s Get:64 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libclass-inspector-perl all 1.36-3 [15.4 kB] 288s Get:65 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libclass-method-modifiers-perl all 2.15-1 [16.1 kB] 288s Get:66 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libclass-xsaccessor-perl s390x 1.19-4build5 [34.2 kB] 288s Get:67 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libclone-perl s390x 0.47-1 [10.7 kB] 288s Get:68 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libconfig-tiny-perl all 2.30-1 [14.7 kB] 288s Get:69 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libparams-util-perl s390x 1.102-3build1 [21.3 kB] 288s Get:70 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsub-install-perl all 0.929-1 [9764 B] 288s Get:71 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdata-optlist-perl all 0.114-1 [9708 B] 288s Get:72 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsub-exporter-perl all 0.990-1 [49.0 kB] 288s Get:73 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libconst-fast-perl all 0.014-2 [8034 B] 288s Get:74 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libcpanel-json-xs-perl s390x 4.39-1 [118 kB] 288s Get:75 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdevel-stacktrace-perl all 2.0500-1 [22.1 kB] 288s Get:76 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libexception-class-perl all 1.45-1 [28.6 kB] 288s Get:77 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libiterator-perl all 0.03+ds1-2 [18.8 kB] 288s Get:78 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libiterator-util-perl all 0.02+ds1-2 [14.1 kB] 288s Get:79 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdata-dpath-perl all 0.60-1 [37.3 kB] 288s Get:80 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdata-messagepack-perl s390x 1.02-1build5 [32.3 kB] 288s Get:81 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnet-domain-tld-perl all 1.75-4 [29.0 kB] 288s Get:82 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdata-validate-domain-perl all 0.15-1 [10.4 kB] 288s Get:83 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnet-ipv6addr-perl all 1.02-1 [21.0 kB] 288s Get:84 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnet-netmask-perl all 2.0002-2 [24.8 kB] 289s Get:85 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnetaddr-ip-perl s390x 4.079+dfsg-2build5 [80.6 kB] 289s Get:86 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdata-validate-ip-perl all 0.31-1 [17.2 kB] 289s Get:87 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdata-validate-uri-perl all 0.07-3 [10.8 kB] 289s Get:88 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libemail-address-xs-perl s390x 1.05-1build5 [29.3 kB] 289s Get:89 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libencode-locale-perl all 1.05-3 [11.6 kB] 289s Get:90 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libipc-system-simple-perl all 1.30-2 [22.3 kB] 289s Get:91 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libfile-basedir-perl all 0.09-2 [14.4 kB] 289s Get:92 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnumber-compare-perl all 0.03-3 [5974 B] 289s Get:93 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtext-glob-perl all 0.11-3 [6780 B] 289s Get:94 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libfile-find-rule-perl all 0.34-3 [24.4 kB] 289s Get:95 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtimedate-perl all 2.3300-2 [34.0 kB] 289s Get:96 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhttp-date-perl all 6.06-1 [10.2 kB] 289s Get:97 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libfile-listing-perl all 6.16-1 [11.3 kB] 289s Get:98 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libfile-sharedir-perl all 1.118-3 [14.0 kB] 289s Get:99 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libio-string-perl all 1.08-4 [11.1 kB] 289s Get:100 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libfont-ttf-perl all 1.06-2 [323 kB] 289s Get:101 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libio-html-perl all 1.004-3 [15.9 kB] 289s Get:102 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liblwp-mediatypes-perl all 6.04-2 [20.1 kB] 289s Get:103 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhttp-message-perl all 7.00-2ubuntu1 [75.9 kB] 289s Get:104 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhtml-form-perl all 6.12-1 [31.1 kB] 289s Get:105 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhtml-html5-entities-perl all 0.004-3 [21.6 kB] 289s Get:106 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhtml-tree-perl all 5.07-3 [200 kB] 289s Get:107 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhttp-cookies-perl all 6.11-1 [18.2 kB] 289s Get:108 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhttp-negotiate-perl all 6.01-2 [12.4 kB] 289s Get:109 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x perl-openssl-defaults s390x 7build3 [6628 B] 289s Get:110 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnet-ssleay-perl s390x 1.94-2 [319 kB] 289s Get:111 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libio-socket-ssl-perl all 2.089-1 [200 kB] 289s Get:112 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnet-http-perl all 6.23-1 [22.3 kB] 289s Get:113 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liblwp-protocol-https-perl all 6.14-1 [9040 B] 289s Get:114 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libwww-robotrules-perl all 6.02-1 [12.6 kB] 289s Get:115 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libwww-perl all 6.77-1 [138 kB] 289s Get:116 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhtml-tokeparser-simple-perl all 3.16-4 [38.0 kB] 289s Get:117 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libimport-into-perl all 1.002005-2 [10.7 kB] 289s Get:118 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libio-interactive-perl all 1.026-1 [10.8 kB] 289s Get:119 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libjson-maybexs-perl all 1.004008-1 [11.1 kB] 289s Get:120 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liblist-compare-perl all 0.55-2 [62.9 kB] 289s Get:121 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liblist-someutils-perl all 0.59-1 [30.4 kB] 289s Get:122 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liblist-utilsby-perl all 0.12-2 [14.9 kB] 289s Get:123 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liblzo2-2 s390x 2.10-3 [64.1 kB] 289s Get:124 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmarkdown2 s390x 2.2.7-2.1 [40.3 kB] 289s Get:125 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmldbm-perl all 2.05-4 [16.0 kB] 289s Get:126 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x librole-tiny-perl all 2.002004-1 [16.3 kB] 289s Get:127 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsub-quote-perl all 2.006008-1ubuntu1 [20.7 kB] 289s Get:128 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmoo-perl all 2.005005-1 [47.4 kB] 289s Get:129 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libstrictures-perl all 2.000006-1 [16.3 kB] 289s Get:130 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmoox-aliases-perl all 0.001006-2 [6796 B] 289s Get:131 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmouse-perl s390x 2.5.11-1build1 [134 kB] 289s Get:132 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpackage-stash-perl all 0.40-1 [19.5 kB] 289s Get:133 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsub-identify-perl s390x 0.14-3build4 [10.0 kB] 289s Get:134 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsub-name-perl s390x 0.28-1 [10.8 kB] 289s Get:135 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnamespace-clean-perl all 0.27-2 [14.0 kB] 289s Get:136 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpath-tiny-perl all 0.146-1 [47.5 kB] 289s Get:137 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libperlio-gzip-perl s390x 0.20-1build5 [14.8 kB] 289s Get:138 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libperlio-utf8-strict-perl s390x 0.010-1build4 [11.2 kB] 289s Get:139 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libproc-processtable-perl s390x 0.636-1build4 [36.6 kB] 289s Get:140 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libregexp-wildcards-perl all 1.05-3 [12.9 kB] 289s Get:141 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsereal-decoder-perl s390x 5.004+ds-1build4 [107 kB] 289s Get:142 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsereal-encoder-perl s390x 5.004+ds-1build4 [112 kB] 289s Get:143 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsort-versions-perl all 1.62-3 [7378 B] 289s Get:144 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxs-parse-keyword-perl s390x 0.48-2 [63.5 kB] 289s Get:145 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsyntax-keyword-try-perl s390x 0.30-1 [24.8 kB] 289s Get:146 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libterm-readkey-perl s390x 2.38-2build5 [23.1 kB] 289s Get:147 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtext-levenshteinxs-perl s390x 0.03-5build5 [8350 B] 289s Get:148 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtext-markdown-discount-perl s390x 0.18-1 [12.4 kB] 289s Get:149 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtext-xslate-perl s390x 3.5.9-2build1 [163 kB] 289s Get:150 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtime-duration-perl all 1.21-2 [12.3 kB] 289s Get:151 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtime-moment-perl s390x 0.44-2build5 [75.5 kB] 289s Get:152 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libunicode-utf8-perl s390x 0.62-2build4 [18.8 kB] 289s Get:153 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libwww-mechanize-perl all 2.18-1ubuntu1 [93.1 kB] 289s Get:154 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxml-namespacesupport-perl all 1.12-2 [13.5 kB] 290s Get:155 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxml-sax-base-perl all 1.09-3 [18.9 kB] 290s Get:156 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxml-sax-perl all 1.02+dfsg-4 [52.4 kB] 290s Get:157 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxml-libxml-perl s390x 2.0207+dfsg+really+2.0134-5build1 [312 kB] 290s Get:158 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libyaml-libyaml-perl s390x 0.903.0+ds-1 [32.8 kB] 290s Get:159 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdevel-size-perl s390x 0.84-1build1 [20.0 kB] 290s Get:160 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libipc-run3-perl all 0.049-1 [28.8 kB] 290s Get:161 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x lzip s390x 1.25-1 [89.5 kB] 290s Get:162 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x lzop s390x 1.04-2build3 [84.3 kB] 290s Get:163 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x patchutils s390x 0.4.2-1build3 [79.2 kB] 290s Get:164 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x t1utils s390x 1.41-4build3 [65.6 kB] 290s Get:165 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x unzip s390x 6.0-28ubuntu6 [186 kB] 290s Get:166 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x lintian all 2.121.1ubuntu1 [1073 kB] 290s Preconfiguring packages ... 290s Fetched 20.9 MB in 3s (6526 kB/s) 290s Selecting previously unselected package openssl. 290s (Reading database ... 12546 files and directories currently installed.) 290s Preparing to unpack .../000-openssl_3.4.0-1ubuntu2_s390x.deb ... 290s Unpacking openssl (3.4.0-1ubuntu2) ... 290s Selecting previously unselected package ca-certificates. 290s Preparing to unpack .../001-ca-certificates_20241223_all.deb ... 290s Unpacking ca-certificates (20241223) ... 291s Selecting previously unselected package iso-codes. 291s Preparing to unpack .../002-iso-codes_4.17.0-1_all.deb ... 291s Unpacking iso-codes (4.17.0-1) ... 291s Selecting previously unselected package libapt-pkg6.0t64:s390x. 291s Preparing to unpack .../003-libapt-pkg6.0t64_2.9.29_s390x.deb ... 291s Unpacking libapt-pkg6.0t64:s390x (2.9.29) ... 292s Selecting previously unselected package libffi8:s390x. 292s Preparing to unpack .../004-libffi8_3.4.7-1_s390x.deb ... 292s Unpacking libffi8:s390x (3.4.7-1) ... 292s Selecting previously unselected package libglib2.0-0t64:s390x. 292s Preparing to unpack .../005-libglib2.0-0t64_2.83.3-2_s390x.deb ... 292s Unpacking libglib2.0-0t64:s390x (2.83.3-2) ... 292s Selecting previously unselected package libnettle8t64:s390x. 292s Preparing to unpack .../006-libnettle8t64_3.10.1-1_s390x.deb ... 292s Unpacking libnettle8t64:s390x (3.10.1-1) ... 292s Selecting previously unselected package libhogweed6t64:s390x. 292s Preparing to unpack .../007-libhogweed6t64_3.10.1-1_s390x.deb ... 292s Unpacking libhogweed6t64:s390x (3.10.1-1) ... 292s Selecting previously unselected package libidn2-0:s390x. 292s Preparing to unpack .../008-libidn2-0_2.3.7-2build2_s390x.deb ... 292s Unpacking libidn2-0:s390x (2.3.7-2build2) ... 292s Selecting previously unselected package libp11-kit0:s390x. 292s Preparing to unpack .../009-libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 292s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) ... 292s Selecting previously unselected package libtasn1-6:s390x. 292s Preparing to unpack .../010-libtasn1-6_4.20.0-2_s390x.deb ... 292s Unpacking libtasn1-6:s390x (4.20.0-2) ... 292s Selecting previously unselected package libgnutls30t64:s390x. 292s Preparing to unpack .../011-libgnutls30t64_3.8.9-2ubuntu1_s390x.deb ... 292s Unpacking libgnutls30t64:s390x (3.8.9-2ubuntu1) ... 292s Selecting previously unselected package libkrb5support0:s390x. 292s Preparing to unpack .../012-libkrb5support0_1.21.3-4ubuntu1_s390x.deb ... 292s Unpacking libkrb5support0:s390x (1.21.3-4ubuntu1) ... 292s Selecting previously unselected package libk5crypto3:s390x. 292s Preparing to unpack .../013-libk5crypto3_1.21.3-4ubuntu1_s390x.deb ... 292s Unpacking libk5crypto3:s390x (1.21.3-4ubuntu1) ... 292s Selecting previously unselected package libkeyutils1:s390x. 292s Preparing to unpack .../014-libkeyutils1_1.6.3-4ubuntu2_s390x.deb ... 292s Unpacking libkeyutils1:s390x (1.6.3-4ubuntu2) ... 292s Selecting previously unselected package libkrb5-3:s390x. 292s Preparing to unpack .../015-libkrb5-3_1.21.3-4ubuntu1_s390x.deb ... 292s Unpacking libkrb5-3:s390x (1.21.3-4ubuntu1) ... 292s Selecting previously unselected package libgssapi-krb5-2:s390x. 292s Preparing to unpack .../016-libgssapi-krb5-2_1.21.3-4ubuntu1_s390x.deb ... 292s Unpacking libgssapi-krb5-2:s390x (1.21.3-4ubuntu1) ... 292s Selecting previously unselected package readline-common. 292s Preparing to unpack .../017-readline-common_8.2-6_all.deb ... 292s Unpacking readline-common (8.2-6) ... 292s Selecting previously unselected package libreadline8t64:s390x. 292s Preparing to unpack .../018-libreadline8t64_8.2-6_s390x.deb ... 292s Adding 'diversion of /lib/s390x-linux-gnu/libhistory.so.8 to /lib/s390x-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64' 292s Adding 'diversion of /lib/s390x-linux-gnu/libhistory.so.8.2 to /lib/s390x-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64' 292s Adding 'diversion of /lib/s390x-linux-gnu/libreadline.so.8 to /lib/s390x-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64' 292s Adding 'diversion of /lib/s390x-linux-gnu/libreadline.so.8.2 to /lib/s390x-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64' 292s Unpacking libreadline8t64:s390x (8.2-6) ... 292s Selecting previously unselected package libsqlite3-0:s390x. 292s Preparing to unpack .../019-libsqlite3-0_3.46.1-1_s390x.deb ... 292s Unpacking libsqlite3-0:s390x (3.46.1-1) ... 292s Selecting previously unselected package libtext-charwidth-perl:s390x. 292s Preparing to unpack .../020-libtext-charwidth-perl_0.04-11build4_s390x.deb ... 292s Unpacking libtext-charwidth-perl:s390x (0.04-11build4) ... 292s Selecting previously unselected package libtext-wrapi18n-perl. 292s Preparing to unpack .../021-libtext-wrapi18n-perl_0.06-10_all.deb ... 292s Unpacking libtext-wrapi18n-perl (0.06-10) ... 292s Selecting previously unselected package libyaml-0-2:s390x. 292s Preparing to unpack .../022-libyaml-0-2_0.2.5-2_s390x.deb ... 292s Unpacking libyaml-0-2:s390x (0.2.5-2) ... 292s Selecting previously unselected package netbase. 292s Preparing to unpack .../023-netbase_6.4_all.deb ... 292s Unpacking netbase (6.4) ... 292s Selecting previously unselected package shared-mime-info. 292s Preparing to unpack .../024-shared-mime-info_2.4-5_s390x.deb ... 292s Unpacking shared-mime-info (2.4-5) ... 292s Selecting previously unselected package ucf. 292s Preparing to unpack .../025-ucf_3.0049_all.deb ... 292s Moving old data out of the way 292s Unpacking ucf (3.0049) ... 292s Selecting previously unselected package libnghttp2-14:s390x. 292s Preparing to unpack .../026-libnghttp2-14_1.64.0-1_s390x.deb ... 292s Unpacking libnghttp2-14:s390x (1.64.0-1) ... 292s Selecting previously unselected package libpsl5t64:s390x. 292s Preparing to unpack .../027-libpsl5t64_0.21.2-1.1build1_s390x.deb ... 292s Unpacking libpsl5t64:s390x (0.21.2-1.1build1) ... 292s Selecting previously unselected package libbrotli1:s390x. 292s Preparing to unpack .../028-libbrotli1_1.1.0-2build3_s390x.deb ... 292s Unpacking libbrotli1:s390x (1.1.0-2build3) ... 292s Selecting previously unselected package libsasl2-modules-db:s390x. 292s Preparing to unpack .../029-libsasl2-modules-db_2.1.28+dfsg1-8build1_s390x.deb ... 292s Unpacking libsasl2-modules-db:s390x (2.1.28+dfsg1-8build1) ... 292s Selecting previously unselected package libsasl2-2:s390x. 292s Preparing to unpack .../030-libsasl2-2_2.1.28+dfsg1-8build1_s390x.deb ... 292s Unpacking libsasl2-2:s390x (2.1.28+dfsg1-8build1) ... 292s Selecting previously unselected package libldap-common. 292s Preparing to unpack .../031-libldap-common_2.6.9+dfsg-1~exp2ubuntu1_all.deb ... 292s Unpacking libldap-common (2.6.9+dfsg-1~exp2ubuntu1) ... 292s Selecting previously unselected package libldap2:s390x. 292s Preparing to unpack .../032-libldap2_2.6.9+dfsg-1~exp2ubuntu1_s390x.deb ... 292s Unpacking libldap2:s390x (2.6.9+dfsg-1~exp2ubuntu1) ... 292s Selecting previously unselected package librtmp1:s390x. 292s Preparing to unpack .../033-librtmp1_2.4+20151223.gitfa8646d.1-2build7_s390x.deb ... 292s Unpacking librtmp1:s390x (2.4+20151223.gitfa8646d.1-2build7) ... 292s Selecting previously unselected package libssh2-1t64:s390x. 292s Preparing to unpack .../034-libssh2-1t64_1.11.1-1_s390x.deb ... 293s Unpacking libssh2-1t64:s390x (1.11.1-1) ... 293s Selecting previously unselected package libcurl3t64-gnutls:s390x. 293s Preparing to unpack .../035-libcurl3t64-gnutls_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 293s Unpacking libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 293s Selecting previously unselected package libstemmer0d:s390x. 293s Preparing to unpack .../036-libstemmer0d_2.2.0-4build1_s390x.deb ... 293s Unpacking libstemmer0d:s390x (2.2.0-4build1) ... 293s Selecting previously unselected package libxmlb2:s390x. 293s Preparing to unpack .../037-libxmlb2_0.3.21-1_s390x.deb ... 293s Unpacking libxmlb2:s390x (0.3.21-1) ... 293s Selecting previously unselected package libappstream5:s390x. 293s Preparing to unpack .../038-libappstream5_1.0.4-1_s390x.deb ... 293s Unpacking libappstream5:s390x (1.0.4-1) ... 293s Selecting previously unselected package appstream. 293s Preparing to unpack .../039-appstream_1.0.4-1_s390x.deb ... 293s Unpacking appstream (1.0.4-1) ... 293s Selecting previously unselected package diffstat. 293s Preparing to unpack .../040-diffstat_1.67-1_s390x.deb ... 293s Unpacking diffstat (1.67-1) ... 293s Selecting previously unselected package gpgconf. 293s Preparing to unpack .../041-gpgconf_2.4.4-2ubuntu22_s390x.deb ... 293s Unpacking gpgconf (2.4.4-2ubuntu22) ... 293s Selecting previously unselected package gpg. 293s Preparing to unpack .../042-gpg_2.4.4-2ubuntu22_s390x.deb ... 293s Unpacking gpg (2.4.4-2ubuntu22) ... 293s Selecting previously unselected package libaliased-perl. 293s Preparing to unpack .../043-libaliased-perl_0.34-3_all.deb ... 293s Unpacking libaliased-perl (0.34-3) ... 293s Selecting previously unselected package libapt-pkg-perl. 293s Preparing to unpack .../044-libapt-pkg-perl_0.1.40build8_s390x.deb ... 293s Unpacking libapt-pkg-perl (0.1.40build8) ... 293s Selecting previously unselected package libb-hooks-op-check-perl:s390x. 293s Preparing to unpack .../045-libb-hooks-op-check-perl_0.22-3build2_s390x.deb ... 293s Unpacking libb-hooks-op-check-perl:s390x (0.22-3build2) ... 293s Selecting previously unselected package libdynaloader-functions-perl. 293s Preparing to unpack .../046-libdynaloader-functions-perl_0.004-1_all.deb ... 293s Unpacking libdynaloader-functions-perl (0.004-1) ... 293s Selecting previously unselected package libdevel-callchecker-perl:s390x. 293s Preparing to unpack .../047-libdevel-callchecker-perl_0.009-1build1_s390x.deb ... 293s Unpacking libdevel-callchecker-perl:s390x (0.009-1build1) ... 293s Selecting previously unselected package libparams-classify-perl:s390x. 293s Preparing to unpack .../048-libparams-classify-perl_0.015-2build6_s390x.deb ... 293s Unpacking libparams-classify-perl:s390x (0.015-2build6) ... 293s Selecting previously unselected package libmodule-runtime-perl. 293s Preparing to unpack .../049-libmodule-runtime-perl_0.016-2_all.deb ... 293s Unpacking libmodule-runtime-perl (0.016-2) ... 293s Selecting previously unselected package libtry-tiny-perl. 293s Preparing to unpack .../050-libtry-tiny-perl_0.32-1_all.deb ... 293s Unpacking libtry-tiny-perl (0.32-1) ... 293s Selecting previously unselected package libmodule-implementation-perl. 293s Preparing to unpack .../051-libmodule-implementation-perl_0.09-2_all.deb ... 293s Unpacking libmodule-implementation-perl (0.09-2) ... 293s Selecting previously unselected package libsub-exporter-progressive-perl. 293s Preparing to unpack .../052-libsub-exporter-progressive-perl_0.001013-3_all.deb ... 293s Unpacking libsub-exporter-progressive-perl (0.001013-3) ... 293s Selecting previously unselected package libvariable-magic-perl. 293s Preparing to unpack .../053-libvariable-magic-perl_0.64-1build1_s390x.deb ... 293s Unpacking libvariable-magic-perl (0.64-1build1) ... 293s Selecting previously unselected package libb-hooks-endofscope-perl. 293s Preparing to unpack .../054-libb-hooks-endofscope-perl_0.28-1_all.deb ... 293s Unpacking libb-hooks-endofscope-perl (0.28-1) ... 293s Selecting previously unselected package libberkeleydb-perl:s390x. 293s Preparing to unpack .../055-libberkeleydb-perl_0.66-1_s390x.deb ... 293s Unpacking libberkeleydb-perl:s390x (0.66-1) ... 293s Selecting previously unselected package libcapture-tiny-perl. 293s Preparing to unpack .../056-libcapture-tiny-perl_0.50-1_all.deb ... 293s Unpacking libcapture-tiny-perl (0.50-1) ... 293s Selecting previously unselected package libhtml-tagset-perl. 293s Preparing to unpack .../057-libhtml-tagset-perl_3.24-1_all.deb ... 293s Unpacking libhtml-tagset-perl (3.24-1) ... 293s Selecting previously unselected package liburi-perl. 293s Preparing to unpack .../058-liburi-perl_5.30-1_all.deb ... 293s Unpacking liburi-perl (5.30-1) ... 293s Selecting previously unselected package libhtml-parser-perl:s390x. 293s Preparing to unpack .../059-libhtml-parser-perl_3.83-1build1_s390x.deb ... 293s Unpacking libhtml-parser-perl:s390x (3.83-1build1) ... 293s Selecting previously unselected package libcgi-pm-perl. 293s Preparing to unpack .../060-libcgi-pm-perl_4.67-1_all.deb ... 293s Unpacking libcgi-pm-perl (4.67-1) ... 293s Selecting previously unselected package libclass-data-inheritable-perl. 293s Preparing to unpack .../061-libclass-data-inheritable-perl_0.10-1_all.deb ... 293s Unpacking libclass-data-inheritable-perl (0.10-1) ... 293s Selecting previously unselected package libclass-inspector-perl. 293s Preparing to unpack .../062-libclass-inspector-perl_1.36-3_all.deb ... 293s Unpacking libclass-inspector-perl (1.36-3) ... 293s Selecting previously unselected package libclass-method-modifiers-perl. 293s Preparing to unpack .../063-libclass-method-modifiers-perl_2.15-1_all.deb ... 293s Unpacking libclass-method-modifiers-perl (2.15-1) ... 293s Selecting previously unselected package libclass-xsaccessor-perl. 293s Preparing to unpack .../064-libclass-xsaccessor-perl_1.19-4build5_s390x.deb ... 293s Unpacking libclass-xsaccessor-perl (1.19-4build5) ... 293s Selecting previously unselected package libclone-perl:s390x. 293s Preparing to unpack .../065-libclone-perl_0.47-1_s390x.deb ... 293s Unpacking libclone-perl:s390x (0.47-1) ... 293s Selecting previously unselected package libconfig-tiny-perl. 293s Preparing to unpack .../066-libconfig-tiny-perl_2.30-1_all.deb ... 293s Unpacking libconfig-tiny-perl (2.30-1) ... 293s Selecting previously unselected package libparams-util-perl. 293s Preparing to unpack .../067-libparams-util-perl_1.102-3build1_s390x.deb ... 293s Unpacking libparams-util-perl (1.102-3build1) ... 293s Selecting previously unselected package libsub-install-perl. 293s Preparing to unpack .../068-libsub-install-perl_0.929-1_all.deb ... 293s Unpacking libsub-install-perl (0.929-1) ... 293s Selecting previously unselected package libdata-optlist-perl. 293s Preparing to unpack .../069-libdata-optlist-perl_0.114-1_all.deb ... 293s Unpacking libdata-optlist-perl (0.114-1) ... 293s Selecting previously unselected package libsub-exporter-perl. 293s Preparing to unpack .../070-libsub-exporter-perl_0.990-1_all.deb ... 293s Unpacking libsub-exporter-perl (0.990-1) ... 293s Selecting previously unselected package libconst-fast-perl. 293s Preparing to unpack .../071-libconst-fast-perl_0.014-2_all.deb ... 293s Unpacking libconst-fast-perl (0.014-2) ... 294s Selecting previously unselected package libcpanel-json-xs-perl:s390x. 294s Preparing to unpack .../072-libcpanel-json-xs-perl_4.39-1_s390x.deb ... 294s Unpacking libcpanel-json-xs-perl:s390x (4.39-1) ... 294s Selecting previously unselected package libdevel-stacktrace-perl. 294s Preparing to unpack .../073-libdevel-stacktrace-perl_2.0500-1_all.deb ... 294s Unpacking libdevel-stacktrace-perl (2.0500-1) ... 294s Selecting previously unselected package libexception-class-perl. 294s Preparing to unpack .../074-libexception-class-perl_1.45-1_all.deb ... 294s Unpacking libexception-class-perl (1.45-1) ... 294s Selecting previously unselected package libiterator-perl. 294s Preparing to unpack .../075-libiterator-perl_0.03+ds1-2_all.deb ... 294s Unpacking libiterator-perl (0.03+ds1-2) ... 294s Selecting previously unselected package libiterator-util-perl. 294s Preparing to unpack .../076-libiterator-util-perl_0.02+ds1-2_all.deb ... 294s Unpacking libiterator-util-perl (0.02+ds1-2) ... 294s Selecting previously unselected package libdata-dpath-perl. 294s Preparing to unpack .../077-libdata-dpath-perl_0.60-1_all.deb ... 294s Unpacking libdata-dpath-perl (0.60-1) ... 294s Selecting previously unselected package libdata-messagepack-perl. 294s Preparing to unpack .../078-libdata-messagepack-perl_1.02-1build5_s390x.deb ... 294s Unpacking libdata-messagepack-perl (1.02-1build5) ... 294s Selecting previously unselected package libnet-domain-tld-perl. 294s Preparing to unpack .../079-libnet-domain-tld-perl_1.75-4_all.deb ... 294s Unpacking libnet-domain-tld-perl (1.75-4) ... 294s Selecting previously unselected package libdata-validate-domain-perl. 294s Preparing to unpack .../080-libdata-validate-domain-perl_0.15-1_all.deb ... 294s Unpacking libdata-validate-domain-perl (0.15-1) ... 294s Selecting previously unselected package libnet-ipv6addr-perl. 294s Preparing to unpack .../081-libnet-ipv6addr-perl_1.02-1_all.deb ... 294s Unpacking libnet-ipv6addr-perl (1.02-1) ... 294s Selecting previously unselected package libnet-netmask-perl. 294s Preparing to unpack .../082-libnet-netmask-perl_2.0002-2_all.deb ... 294s Unpacking libnet-netmask-perl (2.0002-2) ... 294s Selecting previously unselected package libnetaddr-ip-perl. 294s Preparing to unpack .../083-libnetaddr-ip-perl_4.079+dfsg-2build5_s390x.deb ... 294s Unpacking libnetaddr-ip-perl (4.079+dfsg-2build5) ... 294s Selecting previously unselected package libdata-validate-ip-perl. 294s Preparing to unpack .../084-libdata-validate-ip-perl_0.31-1_all.deb ... 294s Unpacking libdata-validate-ip-perl (0.31-1) ... 294s Selecting previously unselected package libdata-validate-uri-perl. 294s Preparing to unpack .../085-libdata-validate-uri-perl_0.07-3_all.deb ... 294s Unpacking libdata-validate-uri-perl (0.07-3) ... 294s Selecting previously unselected package libemail-address-xs-perl. 294s Preparing to unpack .../086-libemail-address-xs-perl_1.05-1build5_s390x.deb ... 294s Unpacking libemail-address-xs-perl (1.05-1build5) ... 294s Selecting previously unselected package libencode-locale-perl. 294s Preparing to unpack .../087-libencode-locale-perl_1.05-3_all.deb ... 294s Unpacking libencode-locale-perl (1.05-3) ... 294s Selecting previously unselected package libipc-system-simple-perl. 294s Preparing to unpack .../088-libipc-system-simple-perl_1.30-2_all.deb ... 294s Unpacking libipc-system-simple-perl (1.30-2) ... 294s Selecting previously unselected package libfile-basedir-perl. 294s Preparing to unpack .../089-libfile-basedir-perl_0.09-2_all.deb ... 294s Unpacking libfile-basedir-perl (0.09-2) ... 294s Selecting previously unselected package libnumber-compare-perl. 294s Preparing to unpack .../090-libnumber-compare-perl_0.03-3_all.deb ... 294s Unpacking libnumber-compare-perl (0.03-3) ... 294s Selecting previously unselected package libtext-glob-perl. 294s Preparing to unpack .../091-libtext-glob-perl_0.11-3_all.deb ... 294s Unpacking libtext-glob-perl (0.11-3) ... 294s Selecting previously unselected package libfile-find-rule-perl. 294s Preparing to unpack .../092-libfile-find-rule-perl_0.34-3_all.deb ... 294s Unpacking libfile-find-rule-perl (0.34-3) ... 294s Selecting previously unselected package libtimedate-perl. 294s Preparing to unpack .../093-libtimedate-perl_2.3300-2_all.deb ... 294s Unpacking libtimedate-perl (2.3300-2) ... 294s Selecting previously unselected package libhttp-date-perl. 294s Preparing to unpack .../094-libhttp-date-perl_6.06-1_all.deb ... 294s Unpacking libhttp-date-perl (6.06-1) ... 294s Selecting previously unselected package libfile-listing-perl. 294s Preparing to unpack .../095-libfile-listing-perl_6.16-1_all.deb ... 294s Unpacking libfile-listing-perl (6.16-1) ... 294s Selecting previously unselected package libfile-sharedir-perl. 294s Preparing to unpack .../096-libfile-sharedir-perl_1.118-3_all.deb ... 294s Unpacking libfile-sharedir-perl (1.118-3) ... 294s Selecting previously unselected package libio-string-perl. 294s Preparing to unpack .../097-libio-string-perl_1.08-4_all.deb ... 294s Unpacking libio-string-perl (1.08-4) ... 294s Selecting previously unselected package libfont-ttf-perl. 294s Preparing to unpack .../098-libfont-ttf-perl_1.06-2_all.deb ... 294s Unpacking libfont-ttf-perl (1.06-2) ... 294s Selecting previously unselected package libio-html-perl. 294s Preparing to unpack .../099-libio-html-perl_1.004-3_all.deb ... 294s Unpacking libio-html-perl (1.004-3) ... 294s Selecting previously unselected package liblwp-mediatypes-perl. 294s Preparing to unpack .../100-liblwp-mediatypes-perl_6.04-2_all.deb ... 294s Unpacking liblwp-mediatypes-perl (6.04-2) ... 294s Selecting previously unselected package libhttp-message-perl. 294s Preparing to unpack .../101-libhttp-message-perl_7.00-2ubuntu1_all.deb ... 294s Unpacking libhttp-message-perl (7.00-2ubuntu1) ... 294s Selecting previously unselected package libhtml-form-perl. 294s Preparing to unpack .../102-libhtml-form-perl_6.12-1_all.deb ... 294s Unpacking libhtml-form-perl (6.12-1) ... 294s Selecting previously unselected package libhtml-html5-entities-perl. 294s Preparing to unpack .../103-libhtml-html5-entities-perl_0.004-3_all.deb ... 294s Unpacking libhtml-html5-entities-perl (0.004-3) ... 294s Selecting previously unselected package libhtml-tree-perl. 295s Preparing to unpack .../104-libhtml-tree-perl_5.07-3_all.deb ... 295s Unpacking libhtml-tree-perl (5.07-3) ... 295s Selecting previously unselected package libhttp-cookies-perl. 295s Preparing to unpack .../105-libhttp-cookies-perl_6.11-1_all.deb ... 295s Unpacking libhttp-cookies-perl (6.11-1) ... 295s Selecting previously unselected package libhttp-negotiate-perl. 295s Preparing to unpack .../106-libhttp-negotiate-perl_6.01-2_all.deb ... 295s Unpacking libhttp-negotiate-perl (6.01-2) ... 295s Selecting previously unselected package perl-openssl-defaults:s390x. 295s Preparing to unpack .../107-perl-openssl-defaults_7build3_s390x.deb ... 295s Unpacking perl-openssl-defaults:s390x (7build3) ... 295s Selecting previously unselected package libnet-ssleay-perl:s390x. 295s Preparing to unpack .../108-libnet-ssleay-perl_1.94-2_s390x.deb ... 295s Unpacking libnet-ssleay-perl:s390x (1.94-2) ... 295s Selecting previously unselected package libio-socket-ssl-perl. 295s Preparing to unpack .../109-libio-socket-ssl-perl_2.089-1_all.deb ... 295s Unpacking libio-socket-ssl-perl (2.089-1) ... 295s Selecting previously unselected package libnet-http-perl. 295s Preparing to unpack .../110-libnet-http-perl_6.23-1_all.deb ... 295s Unpacking libnet-http-perl (6.23-1) ... 295s Selecting previously unselected package liblwp-protocol-https-perl. 295s Preparing to unpack .../111-liblwp-protocol-https-perl_6.14-1_all.deb ... 295s Unpacking liblwp-protocol-https-perl (6.14-1) ... 295s Selecting previously unselected package libwww-robotrules-perl. 295s Preparing to unpack .../112-libwww-robotrules-perl_6.02-1_all.deb ... 295s Unpacking libwww-robotrules-perl (6.02-1) ... 295s Selecting previously unselected package libwww-perl. 295s Preparing to unpack .../113-libwww-perl_6.77-1_all.deb ... 295s Unpacking libwww-perl (6.77-1) ... 295s Selecting previously unselected package libhtml-tokeparser-simple-perl. 295s Preparing to unpack .../114-libhtml-tokeparser-simple-perl_3.16-4_all.deb ... 295s Unpacking libhtml-tokeparser-simple-perl (3.16-4) ... 295s Selecting previously unselected package libimport-into-perl. 295s Preparing to unpack .../115-libimport-into-perl_1.002005-2_all.deb ... 295s Unpacking libimport-into-perl (1.002005-2) ... 295s Selecting previously unselected package libio-interactive-perl. 295s Preparing to unpack .../116-libio-interactive-perl_1.026-1_all.deb ... 295s Unpacking libio-interactive-perl (1.026-1) ... 295s Selecting previously unselected package libjson-maybexs-perl. 295s Preparing to unpack .../117-libjson-maybexs-perl_1.004008-1_all.deb ... 295s Unpacking libjson-maybexs-perl (1.004008-1) ... 295s Selecting previously unselected package liblist-compare-perl. 295s Preparing to unpack .../118-liblist-compare-perl_0.55-2_all.deb ... 295s Unpacking liblist-compare-perl (0.55-2) ... 295s Selecting previously unselected package liblist-someutils-perl. 295s Preparing to unpack .../119-liblist-someutils-perl_0.59-1_all.deb ... 295s Unpacking liblist-someutils-perl (0.59-1) ... 295s Selecting previously unselected package liblist-utilsby-perl. 295s Preparing to unpack .../120-liblist-utilsby-perl_0.12-2_all.deb ... 295s Unpacking liblist-utilsby-perl (0.12-2) ... 295s Selecting previously unselected package liblzo2-2:s390x. 295s Preparing to unpack .../121-liblzo2-2_2.10-3_s390x.deb ... 295s Unpacking liblzo2-2:s390x (2.10-3) ... 295s Selecting previously unselected package libmarkdown2:s390x. 295s Preparing to unpack .../122-libmarkdown2_2.2.7-2.1_s390x.deb ... 295s Unpacking libmarkdown2:s390x (2.2.7-2.1) ... 295s Selecting previously unselected package libmldbm-perl. 295s Preparing to unpack .../123-libmldbm-perl_2.05-4_all.deb ... 295s Unpacking libmldbm-perl (2.05-4) ... 295s Selecting previously unselected package librole-tiny-perl. 295s Preparing to unpack .../124-librole-tiny-perl_2.002004-1_all.deb ... 295s Unpacking librole-tiny-perl (2.002004-1) ... 295s Selecting previously unselected package libsub-quote-perl. 295s Preparing to unpack .../125-libsub-quote-perl_2.006008-1ubuntu1_all.deb ... 295s Unpacking libsub-quote-perl (2.006008-1ubuntu1) ... 295s Selecting previously unselected package libmoo-perl. 295s Preparing to unpack .../126-libmoo-perl_2.005005-1_all.deb ... 295s Unpacking libmoo-perl (2.005005-1) ... 295s Selecting previously unselected package libstrictures-perl. 295s Preparing to unpack .../127-libstrictures-perl_2.000006-1_all.deb ... 295s Unpacking libstrictures-perl (2.000006-1) ... 295s Selecting previously unselected package libmoox-aliases-perl. 295s Preparing to unpack .../128-libmoox-aliases-perl_0.001006-2_all.deb ... 295s Unpacking libmoox-aliases-perl (0.001006-2) ... 295s Selecting previously unselected package libmouse-perl:s390x. 295s Preparing to unpack .../129-libmouse-perl_2.5.11-1build1_s390x.deb ... 295s Unpacking libmouse-perl:s390x (2.5.11-1build1) ... 295s Selecting previously unselected package libpackage-stash-perl. 295s Preparing to unpack .../130-libpackage-stash-perl_0.40-1_all.deb ... 295s Unpacking libpackage-stash-perl (0.40-1) ... 295s Selecting previously unselected package libsub-identify-perl. 295s Preparing to unpack .../131-libsub-identify-perl_0.14-3build4_s390x.deb ... 295s Unpacking libsub-identify-perl (0.14-3build4) ... 295s Selecting previously unselected package libsub-name-perl:s390x. 295s Preparing to unpack .../132-libsub-name-perl_0.28-1_s390x.deb ... 295s Unpacking libsub-name-perl:s390x (0.28-1) ... 295s Selecting previously unselected package libnamespace-clean-perl. 295s Preparing to unpack .../133-libnamespace-clean-perl_0.27-2_all.deb ... 295s Unpacking libnamespace-clean-perl (0.27-2) ... 295s Selecting previously unselected package libpath-tiny-perl. 295s Preparing to unpack .../134-libpath-tiny-perl_0.146-1_all.deb ... 295s Unpacking libpath-tiny-perl (0.146-1) ... 295s Selecting previously unselected package libperlio-gzip-perl. 295s Preparing to unpack .../135-libperlio-gzip-perl_0.20-1build5_s390x.deb ... 295s Unpacking libperlio-gzip-perl (0.20-1build5) ... 295s Selecting previously unselected package libperlio-utf8-strict-perl. 295s Preparing to unpack .../136-libperlio-utf8-strict-perl_0.010-1build4_s390x.deb ... 295s Unpacking libperlio-utf8-strict-perl (0.010-1build4) ... 295s Selecting previously unselected package libproc-processtable-perl:s390x. 295s Preparing to unpack .../137-libproc-processtable-perl_0.636-1build4_s390x.deb ... 296s Unpacking libproc-processtable-perl:s390x (0.636-1build4) ... 296s Selecting previously unselected package libregexp-wildcards-perl. 296s Preparing to unpack .../138-libregexp-wildcards-perl_1.05-3_all.deb ... 296s Unpacking libregexp-wildcards-perl (1.05-3) ... 296s Selecting previously unselected package libsereal-decoder-perl. 296s Preparing to unpack .../139-libsereal-decoder-perl_5.004+ds-1build4_s390x.deb ... 296s Unpacking libsereal-decoder-perl (5.004+ds-1build4) ... 296s Selecting previously unselected package libsereal-encoder-perl. 296s Preparing to unpack .../140-libsereal-encoder-perl_5.004+ds-1build4_s390x.deb ... 296s Unpacking libsereal-encoder-perl (5.004+ds-1build4) ... 296s Selecting previously unselected package libsort-versions-perl. 296s Preparing to unpack .../141-libsort-versions-perl_1.62-3_all.deb ... 296s Unpacking libsort-versions-perl (1.62-3) ... 296s Selecting previously unselected package libxs-parse-keyword-perl. 296s Preparing to unpack .../142-libxs-parse-keyword-perl_0.48-2_s390x.deb ... 296s Unpacking libxs-parse-keyword-perl (0.48-2) ... 296s Selecting previously unselected package libsyntax-keyword-try-perl. 296s Preparing to unpack .../143-libsyntax-keyword-try-perl_0.30-1_s390x.deb ... 296s Unpacking libsyntax-keyword-try-perl (0.30-1) ... 296s Selecting previously unselected package libterm-readkey-perl. 296s Preparing to unpack .../144-libterm-readkey-perl_2.38-2build5_s390x.deb ... 296s Unpacking libterm-readkey-perl (2.38-2build5) ... 296s Selecting previously unselected package libtext-levenshteinxs-perl. 296s Preparing to unpack .../145-libtext-levenshteinxs-perl_0.03-5build5_s390x.deb ... 296s Unpacking libtext-levenshteinxs-perl (0.03-5build5) ... 296s Selecting previously unselected package libtext-markdown-discount-perl. 296s Preparing to unpack .../146-libtext-markdown-discount-perl_0.18-1_s390x.deb ... 296s Unpacking libtext-markdown-discount-perl (0.18-1) ... 296s Selecting previously unselected package libtext-xslate-perl:s390x. 296s Preparing to unpack .../147-libtext-xslate-perl_3.5.9-2build1_s390x.deb ... 296s Unpacking libtext-xslate-perl:s390x (3.5.9-2build1) ... 296s Selecting previously unselected package libtime-duration-perl. 296s Preparing to unpack .../148-libtime-duration-perl_1.21-2_all.deb ... 296s Unpacking libtime-duration-perl (1.21-2) ... 296s Selecting previously unselected package libtime-moment-perl. 296s Preparing to unpack .../149-libtime-moment-perl_0.44-2build5_s390x.deb ... 296s Unpacking libtime-moment-perl (0.44-2build5) ... 296s Selecting previously unselected package libunicode-utf8-perl. 296s Preparing to unpack .../150-libunicode-utf8-perl_0.62-2build4_s390x.deb ... 296s Unpacking libunicode-utf8-perl (0.62-2build4) ... 296s Selecting previously unselected package libwww-mechanize-perl. 296s Preparing to unpack .../151-libwww-mechanize-perl_2.18-1ubuntu1_all.deb ... 296s Unpacking libwww-mechanize-perl (2.18-1ubuntu1) ... 296s Selecting previously unselected package libxml-namespacesupport-perl. 296s Preparing to unpack .../152-libxml-namespacesupport-perl_1.12-2_all.deb ... 296s Unpacking libxml-namespacesupport-perl (1.12-2) ... 296s Selecting previously unselected package libxml-sax-base-perl. 296s Preparing to unpack .../153-libxml-sax-base-perl_1.09-3_all.deb ... 296s Unpacking libxml-sax-base-perl (1.09-3) ... 296s Selecting previously unselected package libxml-sax-perl. 296s Preparing to unpack .../154-libxml-sax-perl_1.02+dfsg-4_all.deb ... 296s Unpacking libxml-sax-perl (1.02+dfsg-4) ... 296s Selecting previously unselected package libxml-libxml-perl. 296s Preparing to unpack .../155-libxml-libxml-perl_2.0207+dfsg+really+2.0134-5build1_s390x.deb ... 296s Unpacking libxml-libxml-perl (2.0207+dfsg+really+2.0134-5build1) ... 296s Selecting previously unselected package libyaml-libyaml-perl. 296s Preparing to unpack .../156-libyaml-libyaml-perl_0.903.0+ds-1_s390x.deb ... 296s Unpacking libyaml-libyaml-perl (0.903.0+ds-1) ... 296s Selecting previously unselected package libdevel-size-perl. 296s Preparing to unpack .../157-libdevel-size-perl_0.84-1build1_s390x.deb ... 296s Unpacking libdevel-size-perl (0.84-1build1) ... 296s Selecting previously unselected package libipc-run3-perl. 296s Preparing to unpack .../158-libipc-run3-perl_0.049-1_all.deb ... 296s Unpacking libipc-run3-perl (0.049-1) ... 296s Selecting previously unselected package lzip. 296s Preparing to unpack .../159-lzip_1.25-1_s390x.deb ... 296s Unpacking lzip (1.25-1) ... 296s Selecting previously unselected package lzop. 296s Preparing to unpack .../160-lzop_1.04-2build3_s390x.deb ... 296s Unpacking lzop (1.04-2build3) ... 296s Selecting previously unselected package patchutils. 296s Preparing to unpack .../161-patchutils_0.4.2-1build3_s390x.deb ... 296s Unpacking patchutils (0.4.2-1build3) ... 296s Selecting previously unselected package t1utils. 296s Preparing to unpack .../162-t1utils_1.41-4build3_s390x.deb ... 296s Unpacking t1utils (1.41-4build3) ... 296s Selecting previously unselected package unzip. 296s Preparing to unpack .../163-unzip_6.0-28ubuntu6_s390x.deb ... 296s Unpacking unzip (6.0-28ubuntu6) ... 296s Selecting previously unselected package lintian. 296s Preparing to unpack .../164-lintian_2.121.1ubuntu1_all.deb ... 296s Unpacking lintian (2.121.1ubuntu1) ... 299s Selecting previously unselected package sbuild-build-depends-lintian-dummy. 299s Preparing to unpack .../165-sbuild-build-depends-lintian-dummy_0.invalid.0_s390x.deb ... 299s Unpacking sbuild-build-depends-lintian-dummy (0.invalid.0) ... 299s Setting up libberkeleydb-perl:s390x (0.66-1) ... 299s Setting up libtext-charwidth-perl:s390x (0.04-11build4) ... 299s Setting up libkeyutils1:s390x (1.6.3-4ubuntu2) ... 299s Setting up libunicode-utf8-perl (0.62-2build4) ... 299s Setting up libmouse-perl:s390x (2.5.11-1build1) ... 299s Setting up libdata-messagepack-perl (1.02-1build5) ... 299s Setting up libclass-inspector-perl (1.36-3) ... 299s Setting up libdynaloader-functions-perl (0.004-1) ... 299s Setting up libtext-glob-perl (0.11-3) ... 299s Setting up libclass-method-modifiers-perl (2.15-1) ... 299s Setting up liblist-compare-perl (0.55-2) ... 299s Setting up libclone-perl:s390x (0.47-1) ... 299s Setting up libyaml-0-2:s390x (0.2.5-2) ... 299s Setting up libsub-identify-perl (0.14-3build4) ... 299s Setting up libcpanel-json-xs-perl:s390x (4.39-1) ... 299s Setting up libhtml-tagset-perl (3.24-1) ... 299s Setting up libdevel-size-perl (0.84-1build1) ... 299s Setting up unzip (6.0-28ubuntu6) ... 299s Setting up libbrotli1:s390x (1.1.0-2build3) ... 299s Setting up libsqlite3-0:s390x (3.46.1-1) ... 299s Setting up liblwp-mediatypes-perl (6.04-2) ... 299s Setting up libyaml-libyaml-perl (0.903.0+ds-1) ... 299s Setting up libio-interactive-perl (1.026-1) ... 299s Setting up libtry-tiny-perl (0.32-1) ... 299s Setting up libnghttp2-14:s390x (1.64.0-1) ... 299s Setting up perl-openssl-defaults:s390x (7build3) ... 299s Setting up libmldbm-perl (2.05-4) ... 299s Setting up libxml-namespacesupport-perl (1.12-2) ... 299s Setting up liblzo2-2:s390x (2.10-3) ... 299s Setting up libtime-moment-perl (0.44-2build5) ... 299s Setting up libencode-locale-perl (1.05-3) ... 299s Setting up libidn2-0:s390x (2.3.7-2build2) ... 299s Setting up libconfig-tiny-perl (2.30-1) ... 299s Setting up libsereal-encoder-perl (5.004+ds-1build4) ... 299s Setting up libldap-common (2.6.9+dfsg-1~exp2ubuntu1) ... 299s Setting up liblist-utilsby-perl (0.12-2) ... 299s Setting up libtext-wrapi18n-perl (0.06-10) ... 299s Setting up libnet-netmask-perl (2.0002-2) ... 299s Setting up libsub-install-perl (0.929-1) ... 299s Setting up libkrb5support0:s390x (1.21.3-4ubuntu1) ... 299s Setting up libnumber-compare-perl (0.03-3) ... 299s Setting up libsasl2-modules-db:s390x (2.1.28+dfsg1-8build1) ... 299s Setting up patchutils (0.4.2-1build3) ... 299s Setting up libjson-maybexs-perl (1.004008-1) ... 299s Setting up libxml-sax-base-perl (1.09-3) ... 299s Setting up libio-string-perl (1.08-4) ... 299s Setting up libnetaddr-ip-perl (4.079+dfsg-2build5) ... 299s Setting up libnettle8t64:s390x (3.10.1-1) ... 299s Setting up libclass-data-inheritable-perl (0.10-1) ... 299s Setting up libfile-find-rule-perl (0.34-3) ... 299s Setting up libipc-system-simple-perl (1.30-2) ... 299s Setting up libnet-domain-tld-perl (1.75-4) ... 299s Setting up libperlio-utf8-strict-perl (0.010-1build4) ... 299s Setting up lzip (1.25-1) ... 299s update-alternatives: using /usr/bin/lzip.lzip to provide /usr/bin/lzip (lzip) in auto mode 299s update-alternatives: using /usr/bin/lzip.lzip to provide /usr/bin/lzip-compressor (lzip-compressor) in auto mode 299s update-alternatives: using /usr/bin/lzip.lzip to provide /usr/bin/lzip-decompressor (lzip-decompressor) in auto mode 299s Setting up t1utils (1.41-4build3) ... 299s Setting up diffstat (1.67-1) ... 299s Setting up libvariable-magic-perl (0.64-1build1) ... 299s Setting up libio-html-perl (1.004-3) ... 299s Setting up libb-hooks-op-check-perl:s390x (0.22-3build2) ... 299s Setting up ucf (3.0049) ... 299s Setting up libk5crypto3:s390x (1.21.3-4ubuntu1) ... 299s Setting up libparams-util-perl (1.102-3build1) ... 299s Setting up libsasl2-2:s390x (2.1.28+dfsg1-8build1) ... 299s Setting up libtime-duration-perl (1.21-2) ... 299s Setting up libtext-xslate-perl:s390x (3.5.9-2build1) ... 299s Setting up libsub-exporter-progressive-perl (0.001013-3) ... 299s Setting up libcapture-tiny-perl (0.50-1) ... 299s Setting up libtimedate-perl (2.3300-2) ... 299s Setting up libsub-name-perl:s390x (0.28-1) ... 299s Setting up libffi8:s390x (3.4.7-1) ... 299s Setting up libdata-validate-domain-perl (0.15-1) ... 299s Setting up libproc-processtable-perl:s390x (0.636-1build4) ... 299s Setting up libhogweed6t64:s390x (3.10.1-1) ... 299s Setting up libpath-tiny-perl (0.146-1) ... 299s Setting up lzop (1.04-2build3) ... 299s Setting up librole-tiny-perl (2.002004-1) ... 299s Setting up libtasn1-6:s390x (4.20.0-2) ... 299s Setting up libipc-run3-perl (0.049-1) ... 299s Setting up libregexp-wildcards-perl (1.05-3) ... 299s Setting up libfile-sharedir-perl (1.118-3) ... 299s Setting up libaliased-perl (0.34-3) ... 299s Setting up netbase (6.4) ... 299s Setting up libstrictures-perl (2.000006-1) ... 299s Setting up libsub-quote-perl (2.006008-1ubuntu1) ... 299s Setting up libdevel-stacktrace-perl (2.0500-1) ... 299s Setting up libclass-xsaccessor-perl (1.19-4build5) ... 299s Setting up libkrb5-3:s390x (1.21.3-4ubuntu1) ... 299s Setting up libstemmer0d:s390x (2.2.0-4build1) ... 299s Setting up libsort-versions-perl (1.62-3) ... 299s Setting up libssh2-1t64:s390x (1.11.1-1) ... 299s Setting up libapt-pkg6.0t64:s390x (2.9.29) ... 299s Setting up libterm-readkey-perl (2.38-2build5) ... 299s Setting up libfont-ttf-perl (1.06-2) ... 299s Setting up openssl (3.4.0-1ubuntu2) ... 299s Setting up libtext-levenshteinxs-perl (0.03-5build5) ... 299s Setting up libperlio-gzip-perl (0.20-1build5) ... 299s Setting up readline-common (8.2-6) ... 299s Setting up libhtml-html5-entities-perl (0.004-3) ... 299s Setting up libsereal-decoder-perl (5.004+ds-1build4) ... 299s Setting up libmarkdown2:s390x (2.2.7-2.1) ... 299s Setting up libldap2:s390x (2.6.9+dfsg-1~exp2ubuntu1) ... 299s Setting up liburi-perl (5.30-1) ... 299s Setting up iso-codes (4.17.0-1) ... 299s Setting up libnet-ipv6addr-perl (1.02-1) ... 299s Setting up libdata-validate-ip-perl (0.31-1) ... 299s Setting up libemail-address-xs-perl (1.05-1build5) ... 299s Setting up libnet-ssleay-perl:s390x (1.94-2) ... 299s Setting up libapt-pkg-perl (0.1.40build8) ... 299s Setting up libhttp-date-perl (6.06-1) ... 299s Setting up libfile-basedir-perl (0.09-2) ... 299s Setting up libfile-listing-perl (6.16-1) ... 299s Setting up libpsl5t64:s390x (0.21.2-1.1build1) ... 299s Setting up libnet-http-perl (6.23-1) ... 299s Setting up libtext-markdown-discount-perl (0.18-1) ... 299s Setting up libexception-class-perl (1.45-1) ... 299s Setting up libdevel-callchecker-perl:s390x (0.009-1build1) ... 299s Setting up libxml-sax-perl (1.02+dfsg-4) ... 299s update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::PurePerl with priority 10... 299s update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... 300s Creating config file /etc/perl/XML/SAX/ParserDetails.ini with new version 300s Setting up ca-certificates (20241223) ... 300s Updating certificates in /etc/ssl/certs... 300s 152 added, 0 removed; done. 300s Setting up libglib2.0-0t64:s390x (2.83.3-2) ... 300s No schema files found: doing nothing. 300s Setting up libdata-validate-uri-perl (0.07-3) ... 300s Setting up libxs-parse-keyword-perl (0.48-2) ... 300s Setting up shared-mime-info (2.4-5) ... 300s Warning: program compiled against libxml 212 using older 209 301s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 301s Setting up libgssapi-krb5-2:s390x (1.21.3-4ubuntu1) ... 301s Setting up libdata-optlist-perl (0.114-1) ... 301s Setting up libreadline8t64:s390x (8.2-6) ... 302s Setting up libxml-libxml-perl (2.0207+dfsg+really+2.0134-5build1) ... 302s update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX::Parser with priority 50... 302s update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX with priority 50... 302s update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... 302s Setting up libwww-robotrules-perl (6.02-1) ... 302s Setting up libsyntax-keyword-try-perl (0.30-1) ... 302s Setting up libhtml-parser-perl:s390x (3.83-1build1) ... 302s Setting up gpgconf (2.4.4-2ubuntu22) ... 302s Setting up libio-socket-ssl-perl (2.089-1) ... 302s Setting up gpg (2.4.4-2ubuntu22) ... 302s Setting up libsub-exporter-perl (0.990-1) ... 302s Setting up libhttp-message-perl (7.00-2ubuntu1) ... 302s Setting up libhtml-form-perl (6.12-1) ... 302s Setting up libgnutls30t64:s390x (3.8.9-2ubuntu1) ... 302s Setting up libiterator-perl (0.03+ds1-2) ... 302s Setting up libhttp-negotiate-perl (6.01-2) ... 302s Setting up libiterator-util-perl (0.02+ds1-2) ... 302s Setting up libhttp-cookies-perl (6.11-1) ... 302s Setting up libhtml-tree-perl (5.07-3) ... 302s Setting up libxmlb2:s390x (0.3.21-1) ... 302s Setting up libparams-classify-perl:s390x (0.015-2build6) ... 302s Setting up libcgi-pm-perl (4.67-1) ... 302s Setting up libmodule-runtime-perl (0.016-2) ... 302s Setting up librtmp1:s390x (2.4+20151223.gitfa8646d.1-2build7) ... 302s Setting up libconst-fast-perl (0.014-2) ... 302s Setting up libdata-dpath-perl (0.60-1) ... 302s Setting up libmodule-implementation-perl (0.09-2) ... 302s Setting up libpackage-stash-perl (0.40-1) ... 302s Setting up libimport-into-perl (1.002005-2) ... 302s Setting up libmoo-perl (2.005005-1) ... 302s Setting up libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 302s Setting up liblist-someutils-perl (0.59-1) ... 302s Setting up libappstream5:s390x (1.0.4-1) ... 302s Setting up appstream (1.0.4-1) ... 302s ✔ Metadata cache was updated successfully. 302s Setting up libmoox-aliases-perl (0.001006-2) ... 302s Setting up libb-hooks-endofscope-perl (0.28-1) ... 302s Setting up libnamespace-clean-perl (0.27-2) ... 302s Setting up liblwp-protocol-https-perl (6.14-1) ... 302s Setting up libwww-perl (6.77-1) ... 302s Setting up libhtml-tokeparser-simple-perl (3.16-4) ... 302s Setting up libwww-mechanize-perl (2.18-1ubuntu1) ... 302s Setting up lintian (2.121.1ubuntu1) ... 302s Setting up sbuild-build-depends-lintian-dummy (0.invalid.0) ... 302s Processing triggers for libc-bin (2.40-4ubuntu1) ... 302s Processing triggers for man-db (2.13.0-1) ... 302s Not building database; man-db/auto-update is not 'true'. 302s Processing triggers for ca-certificates (20241223) ... 302s Updating certificates in /etc/ssl/certs... 302s 0 added, 0 removed; done. 302s Running hooks in /etc/ca-certificates/update.d... 302s done. 303s Running lintian... 306s W: procenv source: build-depends-on-obsolete-package Build-Depends: pkg-config => pkgconf 306s W: procenv: changelog-distribution-does-not-match-changes-file unstable != plucky [usr/share/doc/procenv/changelog.Debian.gz:1] 306s W: procenv source: debian-watch-could-verify-download debian/upstream/signing-key.asc [debian/watch] 306s W: procenv changes: distribution-and-changes-mismatch plucky unstable 306s W: procenv source: orig-tarball-missing-upstream-signature procenv_0.51.orig.tar.gz 306s W: procenv source: package-uses-deprecated-debhelper-compat-version 9 306s 306s I: Lintian run was successful. 306s 306s +------------------------------------------------------------------------------+ 306s | Post Build Thu, 20 Feb 2025 00:17:32 +0000 | 306s +------------------------------------------------------------------------------+ 306s 306s 306s +------------------------------------------------------------------------------+ 306s | Cleanup Thu, 20 Feb 2025 00:17:32 +0000 | 306s +------------------------------------------------------------------------------+ 306s 306s Purging /build/reproducible-path 306s Not cleaning session: cloned chroot in use 307s 307s +------------------------------------------------------------------------------+ 307s | Summary Thu, 20 Feb 2025 00:17:33 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s Build Architecture: s390x 307s Build Type: binary 307s Build-Space: 7316 307s Build-Time: 19 307s Distribution: plucky 307s Host Architecture: s390x 307s Install-Time: 7 307s Job: procenv 307s Lintian: warn 307s Machine Architecture: s390x 307s Package: procenv 307s Package-Time: 32 307s Source-Version: 0.51-0.2 307s Space: 7316 307s Status: successful 307s Version: 0.51-0.2 307s -------------------------------------------------------------------------------- 307s Finished at 2025-02-20T00:17:11Z 307s Build needed 00:00:32, 7316k disk space 307s INFO: Displaying sbuild log 307s sbuild (Debian sbuild) 0.88.3ubuntu1 (07 February 2025) on autopkgtest.local 307s 307s +==============================================================================+ 307s | procenv (s390x) Thu, 20 Feb 2025 00:16:39 +0000 | 307s +==============================================================================+ 307s 307s Package: procenv 307s Distribution: plucky 307s Machine Architecture: s390x 307s Host Architecture: s390x 307s Build Architecture: s390x 307s Build Type: binary 307s 307s I: Setting up the chroot... 307s I: Creating chroot session... 307s I: Setting up log color... 307s I: Setting up apt archive... 307s 307s +------------------------------------------------------------------------------+ 307s | Update chroot Thu, 20 Feb 2025 00:16:40 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s Hit:1 http://ports.ubuntu.com/ubuntu-ports plucky InRelease 307s Reading package lists... 307s Reading package lists... 307s Building dependency tree... 307s Calculating upgrade... 307s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 307s 307s +------------------------------------------------------------------------------+ 307s | Fetch source files Thu, 20 Feb 2025 00:16:42 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s 307s Check APT 307s --------- 307s 307s Checking available source versions... 307s 307s Download source files with APT 307s ------------------------------ 307s 307s Reading package lists... 307s Need to get 319 kB of source archives. 307s Get:1 http://ports.ubuntu.com/ubuntu-ports plucky/universe procenv 0.51-0.2 (dsc) [2061 B] 307s Get:2 http://ports.ubuntu.com/ubuntu-ports plucky/universe procenv 0.51-0.2 (tar) [246 kB] 307s Get:3 http://ports.ubuntu.com/ubuntu-ports plucky/universe procenv 0.51-0.2 (diff) [71.2 kB] 307s Fetched 319 kB in 1s (624 kB/s) 307s Download complete and in download only mode 307s 307s +------------------------------------------------------------------------------+ 307s | Install package build dependencies Thu, 20 Feb 2025 00:16:43 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s 307s Setup apt archive 307s ----------------- 307s 307s Merged Build-Depends: debhelper (>= 9.0.0), dh-autoreconf, pkg-config, automake (>= 1.12), perl, expat, check, libcap-dev, libselinux1-dev, libapparmor-dev, build-essential 307s Filtered Build-Depends: debhelper (>= 9.0.0), dh-autoreconf, pkg-config, automake (>= 1.12), perl, expat, check, libcap-dev, libselinux1-dev, libapparmor-dev, build-essential 307s dpkg-deb: building package 'sbuild-build-depends-main-dummy' in '/build/reproducible-path/resolver-oC6JDK/apt_archive/sbuild-build-depends-main-dummy.deb'. 307s Ign:1 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ InRelease 307s Get:2 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Release [609 B] 307s Ign:3 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Release.gpg 307s Get:4 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Sources [924 B] 307s Get:5 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Packages [749 B] 307s Fetched 2282 B in 0s (0 B/s) 307s Reading package lists... 307s Reading package lists... 307s 307s Install main build dependencies (apt-based resolver) 307s ---------------------------------------------------- 307s 307s Installing build dependencies 307s Reading package lists... 307s Building dependency tree... 307s The following additional packages will be installed: 307s autoconf automake autopoint autotools-dev bsdextrautils check debhelper 307s debugedit dh-autoreconf dh-strip-nondeterminism dwz expat file gettext 307s gettext-base groff-base intltool-debian libapparmor-dev libapparmor1 307s libarchive-zip-perl libcap-dev libdebhelper-perl libdw1t64 libelf1t64 307s libexpat1 libfile-stripnondeterminism-perl libmagic-mgc libmagic1t64 307s libpcre2-16-0 libpcre2-32-0 libpcre2-dev libpcre2-posix3 libpipeline1 307s libpkgconf3 libselinux1-dev libsepol-dev libsubunit-dev libsubunit0 libtool 307s libuchardet0 libunistring5 libxml2 m4 man-db pkg-config pkgconf pkgconf-bin 307s po-debconf 307s Suggested packages: 307s autoconf-archive gnu-standards autoconf-doc dh-make gettext-doc 307s libasprintf-dev libgettextpo-dev groff manpages-dev libtool-doc gfortran 307s | fortran95-compiler gcj-jdk m4-doc apparmor less www-browser 307s libmail-box-perl 307s Recommended packages: 307s curl | wget | lynx libarchive-cpio-perl libltdl-dev libmail-sendmail-perl 307s The following NEW packages will be installed: 307s autoconf automake autopoint autotools-dev bsdextrautils check debhelper 307s debugedit dh-autoreconf dh-strip-nondeterminism dwz expat file gettext 307s gettext-base groff-base intltool-debian libapparmor-dev libapparmor1 307s libarchive-zip-perl libcap-dev libdebhelper-perl libdw1t64 libelf1t64 307s libexpat1 libfile-stripnondeterminism-perl libmagic-mgc libmagic1t64 307s libpcre2-16-0 libpcre2-32-0 libpcre2-dev libpcre2-posix3 libpipeline1 307s libpkgconf3 libselinux1-dev libsepol-dev libsubunit-dev libsubunit0 libtool 307s libuchardet0 libunistring5 libxml2 m4 man-db pkg-config pkgconf pkgconf-bin 307s po-debconf sbuild-build-depends-main-dummy 307s 0 upgraded, 49 newly installed, 0 to remove and 0 not upgraded. 307s Need to get 12.4 MB of archives. 307s After this operation, 46.5 MB of additional disk space will be used. 307s Get:1 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ sbuild-build-depends-main-dummy 0.invalid.0 [712 B] 307s Get:2 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libapparmor1 s390x 4.1.0~beta5-0ubuntu2 [54.1 kB] 307s Get:3 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libelf1t64 s390x 0.192-4 [70.3 kB] 307s Get:4 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libexpat1 s390x 2.6.4-1 [93.3 kB] 307s Get:5 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libunistring5 s390x 1.3-1 [619 kB] 307s Get:6 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxml2 s390x 2.12.7+dfsg+really2.9.14-0.2ubuntu3 [816 kB] 307s Get:7 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x bsdextrautils s390x 2.40.2-14ubuntu1 [91.2 kB] 307s Get:8 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmagic-mgc s390x 1:5.45-3build1 [305 kB] 307s Get:9 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmagic1t64 s390x 1:5.45-3build1 [93.2 kB] 307s Get:10 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x file s390x 1:5.45-3build1 [22.2 kB] 307s Get:11 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x gettext-base s390x 0.23.1-1 [42.3 kB] 307s Get:12 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libuchardet0 s390x 0.0.8-1build1 [76.7 kB] 307s Get:13 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x groff-base s390x 1.23.0-7 [1045 kB] 307s Get:14 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpipeline1 s390x 1.5.8-1 [32.5 kB] 307s Get:15 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x man-db s390x 2.13.0-1 [1337 kB] 307s Get:16 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 307s Get:17 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x autoconf all 2.72-3 [382 kB] 307s Get:18 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 307s Get:19 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x automake all 1:1.17-3 [572 kB] 307s Get:20 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x autopoint all 0.23.1-1 [619 kB] 307s Get:21 http://ports.ubuntu.com/ubuntu-ports plucky/universe s390x libsubunit0 s390x 1.4.2-3build1 [6560 B] 307s Get:22 http://ports.ubuntu.com/ubuntu-ports plucky/universe s390x libsubunit-dev s390x 1.4.2-3build1 [6330 B] 307s Get:23 http://ports.ubuntu.com/ubuntu-ports plucky/universe s390x check s390x 0.15.2-3 [106 kB] 307s Get:24 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 307s Get:25 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 307s Get:26 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x dh-autoreconf all 20 [16.1 kB] 307s Get:27 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 307s Get:28 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 307s Get:29 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 307s Get:30 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdw1t64 s390x 0.192-4 [299 kB] 307s Get:31 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 307s Get:32 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 307s Get:33 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 307s Get:34 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 307s Get:35 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 307s Get:36 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 307s Get:37 http://ports.ubuntu.com/ubuntu-ports plucky/universe s390x expat s390x 2.6.4-1 [18.5 kB] 307s Get:38 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libcap-dev s390x 1:2.66-5ubuntu3 [563 kB] 307s Get:39 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 307s Get:40 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpcre2-32-0 s390x 10.42-4ubuntu3 [221 kB] 307s Get:41 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpcre2-posix3 s390x 10.42-4ubuntu3 [6820 B] 307s Get:42 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpcre2-dev s390x 10.42-4ubuntu3 [815 kB] 307s Get:43 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 307s Get:44 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsepol-dev s390x 3.7-1 [412 kB] 307s Get:45 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libselinux1-dev s390x 3.7-3ubuntu2 [169 kB] 307s Get:46 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 307s Get:47 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 307s Get:48 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x pkg-config s390x 1.8.1-4 [7362 B] 307s Get:49 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libapparmor-dev s390x 4.1.0~beta5-0ubuntu2 [71.7 kB] 307s Preconfiguring packages ... 307s Fetched 12.4 MB in 1s (8984 kB/s) 307s Selecting previously unselected package libapparmor1:s390x. 307s (Reading database ... 10122 files and directories currently installed.) 307s Preparing to unpack .../00-libapparmor1_4.1.0~beta5-0ubuntu2_s390x.deb ... 307s Unpacking libapparmor1:s390x (4.1.0~beta5-0ubuntu2) ... 307s Selecting previously unselected package libelf1t64:s390x. 307s Preparing to unpack .../01-libelf1t64_0.192-4_s390x.deb ... 307s Unpacking libelf1t64:s390x (0.192-4) ... 307s Selecting previously unselected package libexpat1:s390x. 307s Preparing to unpack .../02-libexpat1_2.6.4-1_s390x.deb ... 307s Unpacking libexpat1:s390x (2.6.4-1) ... 307s Selecting previously unselected package libunistring5:s390x. 307s Preparing to unpack .../03-libunistring5_1.3-1_s390x.deb ... 307s Unpacking libunistring5:s390x (1.3-1) ... 307s Selecting previously unselected package libxml2:s390x. 307s Preparing to unpack .../04-libxml2_2.12.7+dfsg+really2.9.14-0.2ubuntu3_s390x.deb ... 307s Unpacking libxml2:s390x (2.12.7+dfsg+really2.9.14-0.2ubuntu3) ... 307s Selecting previously unselected package bsdextrautils. 307s Preparing to unpack .../05-bsdextrautils_2.40.2-14ubuntu1_s390x.deb ... 307s Unpacking bsdextrautils (2.40.2-14ubuntu1) ... 307s Selecting previously unselected package libmagic-mgc. 307s Preparing to unpack .../06-libmagic-mgc_1%3a5.45-3build1_s390x.deb ... 307s Unpacking libmagic-mgc (1:5.45-3build1) ... 307s Selecting previously unselected package libmagic1t64:s390x. 307s Preparing to unpack .../07-libmagic1t64_1%3a5.45-3build1_s390x.deb ... 307s Unpacking libmagic1t64:s390x (1:5.45-3build1) ... 307s Selecting previously unselected package file. 307s Preparing to unpack .../08-file_1%3a5.45-3build1_s390x.deb ... 307s Unpacking file (1:5.45-3build1) ... 307s Selecting previously unselected package gettext-base. 307s Preparing to unpack .../09-gettext-base_0.23.1-1_s390x.deb ... 307s Unpacking gettext-base (0.23.1-1) ... 307s Selecting previously unselected package libuchardet0:s390x. 307s Preparing to unpack .../10-libuchardet0_0.0.8-1build1_s390x.deb ... 307s Unpacking libuchardet0:s390x (0.0.8-1build1) ... 307s Selecting previously unselected package groff-base. 307s Preparing to unpack .../11-groff-base_1.23.0-7_s390x.deb ... 307s Unpacking groff-base (1.23.0-7) ... 307s Selecting previously unselected package libpipeline1:s390x. 307s Preparing to unpack .../12-libpipeline1_1.5.8-1_s390x.deb ... 307s Unpacking libpipeline1:s390x (1.5.8-1) ... 307s Selecting previously unselected package man-db. 307s Preparing to unpack .../13-man-db_2.13.0-1_s390x.deb ... 307s Unpacking man-db (2.13.0-1) ... 307s Selecting previously unselected package m4. 307s Preparing to unpack .../14-m4_1.4.19-5_s390x.deb ... 307s Unpacking m4 (1.4.19-5) ... 307s Selecting previously unselected package autoconf. 307s Preparing to unpack .../15-autoconf_2.72-3_all.deb ... 307s Unpacking autoconf (2.72-3) ... 307s Selecting previously unselected package autotools-dev. 307s Preparing to unpack .../16-autotools-dev_20220109.1_all.deb ... 307s Unpacking autotools-dev (20220109.1) ... 307s Selecting previously unselected package automake. 307s Preparing to unpack .../17-automake_1%3a1.17-3_all.deb ... 307s Unpacking automake (1:1.17-3) ... 307s Selecting previously unselected package autopoint. 307s Preparing to unpack .../18-autopoint_0.23.1-1_all.deb ... 307s Unpacking autopoint (0.23.1-1) ... 307s Selecting previously unselected package libsubunit0:s390x. 307s Preparing to unpack .../19-libsubunit0_1.4.2-3build1_s390x.deb ... 307s Unpacking libsubunit0:s390x (1.4.2-3build1) ... 307s Selecting previously unselected package libsubunit-dev:s390x. 307s Preparing to unpack .../20-libsubunit-dev_1.4.2-3build1_s390x.deb ... 307s Unpacking libsubunit-dev:s390x (1.4.2-3build1) ... 307s Selecting previously unselected package check:s390x. 307s Preparing to unpack .../21-check_0.15.2-3_s390x.deb ... 307s Unpacking check:s390x (0.15.2-3) ... 307s Selecting previously unselected package libdebhelper-perl. 307s Preparing to unpack .../22-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 307s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 307s Selecting previously unselected package libtool. 307s Preparing to unpack .../23-libtool_2.5.4-3build1_all.deb ... 307s Unpacking libtool (2.5.4-3build1) ... 307s Selecting previously unselected package dh-autoreconf. 307s Preparing to unpack .../24-dh-autoreconf_20_all.deb ... 307s Unpacking dh-autoreconf (20) ... 307s Selecting previously unselected package libarchive-zip-perl. 307s Preparing to unpack .../25-libarchive-zip-perl_1.68-1_all.deb ... 307s Unpacking libarchive-zip-perl (1.68-1) ... 307s Selecting previously unselected package libfile-stripnondeterminism-perl. 307s Preparing to unpack .../26-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 307s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 307s Selecting previously unselected package dh-strip-nondeterminism. 307s Preparing to unpack .../27-dh-strip-nondeterminism_1.14.1-2_all.deb ... 307s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 307s Selecting previously unselected package libdw1t64:s390x. 307s Preparing to unpack .../28-libdw1t64_0.192-4_s390x.deb ... 307s Unpacking libdw1t64:s390x (0.192-4) ... 307s Selecting previously unselected package debugedit. 307s Preparing to unpack .../29-debugedit_1%3a5.1-2_s390x.deb ... 307s Unpacking debugedit (1:5.1-2) ... 307s Selecting previously unselected package dwz. 307s Preparing to unpack .../30-dwz_0.15-1build6_s390x.deb ... 307s Unpacking dwz (0.15-1build6) ... 307s Selecting previously unselected package gettext. 307s Preparing to unpack .../31-gettext_0.23.1-1_s390x.deb ... 307s Unpacking gettext (0.23.1-1) ... 307s Selecting previously unselected package intltool-debian. 307s Preparing to unpack .../32-intltool-debian_0.35.0+20060710.6_all.deb ... 307s Unpacking intltool-debian (0.35.0+20060710.6) ... 307s Selecting previously unselected package po-debconf. 307s Preparing to unpack .../33-po-debconf_1.0.21+nmu1_all.deb ... 307s Unpacking po-debconf (1.0.21+nmu1) ... 307s Selecting previously unselected package debhelper. 307s Preparing to unpack .../34-debhelper_13.24.1ubuntu2_all.deb ... 307s Unpacking debhelper (13.24.1ubuntu2) ... 307s Selecting previously unselected package expat. 307s Preparing to unpack .../35-expat_2.6.4-1_s390x.deb ... 307s Unpacking expat (2.6.4-1) ... 307s Selecting previously unselected package libcap-dev:s390x. 307s Preparing to unpack .../36-libcap-dev_1%3a2.66-5ubuntu3_s390x.deb ... 307s Unpacking libcap-dev:s390x (1:2.66-5ubuntu3) ... 307s Selecting previously unselected package libpcre2-16-0:s390x. 307s Preparing to unpack .../37-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 307s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 307s Selecting previously unselected package libpcre2-32-0:s390x. 307s Preparing to unpack .../38-libpcre2-32-0_10.42-4ubuntu3_s390x.deb ... 307s Unpacking libpcre2-32-0:s390x (10.42-4ubuntu3) ... 307s Selecting previously unselected package libpcre2-posix3:s390x. 307s Preparing to unpack .../39-libpcre2-posix3_10.42-4ubuntu3_s390x.deb ... 307s Unpacking libpcre2-posix3:s390x (10.42-4ubuntu3) ... 307s Selecting previously unselected package libpcre2-dev:s390x. 307s Preparing to unpack .../40-libpcre2-dev_10.42-4ubuntu3_s390x.deb ... 307s Unpacking libpcre2-dev:s390x (10.42-4ubuntu3) ... 307s Selecting previously unselected package libpkgconf3:s390x. 307s Preparing to unpack .../41-libpkgconf3_1.8.1-4_s390x.deb ... 307s Unpacking libpkgconf3:s390x (1.8.1-4) ... 307s Selecting previously unselected package libsepol-dev:s390x. 307s Preparing to unpack .../42-libsepol-dev_3.7-1_s390x.deb ... 307s Unpacking libsepol-dev:s390x (3.7-1) ... 307s Selecting previously unselected package libselinux1-dev:s390x. 307s Preparing to unpack .../43-libselinux1-dev_3.7-3ubuntu2_s390x.deb ... 307s Unpacking libselinux1-dev:s390x (3.7-3ubuntu2) ... 307s Selecting previously unselected package pkgconf-bin. 307s Preparing to unpack .../44-pkgconf-bin_1.8.1-4_s390x.deb ... 307s Unpacking pkgconf-bin (1.8.1-4) ... 307s Selecting previously unselected package pkgconf:s390x. 307s Preparing to unpack .../45-pkgconf_1.8.1-4_s390x.deb ... 307s Unpacking pkgconf:s390x (1.8.1-4) ... 307s Selecting previously unselected package pkg-config:s390x. 307s Preparing to unpack .../46-pkg-config_1.8.1-4_s390x.deb ... 307s Unpacking pkg-config:s390x (1.8.1-4) ... 307s Selecting previously unselected package libapparmor-dev:s390x. 307s Preparing to unpack .../47-libapparmor-dev_4.1.0~beta5-0ubuntu2_s390x.deb ... 307s Unpacking libapparmor-dev:s390x (4.1.0~beta5-0ubuntu2) ... 307s Selecting previously unselected package sbuild-build-depends-main-dummy. 307s Preparing to unpack .../48-sbuild-build-depends-main-dummy_0.invalid.0_s390x.deb ... 307s Unpacking sbuild-build-depends-main-dummy (0.invalid.0) ... 307s Setting up libexpat1:s390x (2.6.4-1) ... 307s Setting up libpipeline1:s390x (1.5.8-1) ... 307s Setting up libapparmor1:s390x (4.1.0~beta5-0ubuntu2) ... 307s Setting up bsdextrautils (2.40.2-14ubuntu1) ... 307s Setting up libmagic-mgc (1:5.45-3build1) ... 307s Setting up libarchive-zip-perl (1.68-1) ... 307s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 307s Setting up libmagic1t64:s390x (1:5.45-3build1) ... 307s Setting up gettext-base (0.23.1-1) ... 307s Setting up m4 (1.4.19-5) ... 307s Setting up file (1:5.45-3build1) ... 307s Setting up libsubunit0:s390x (1.4.2-3build1) ... 307s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 307s Setting up libelf1t64:s390x (0.192-4) ... 307s Setting up libdw1t64:s390x (0.192-4) ... 307s Setting up autotools-dev (20220109.1) ... 307s Setting up libpcre2-32-0:s390x (10.42-4ubuntu3) ... 307s Setting up libpkgconf3:s390x (1.8.1-4) ... 307s Setting up expat (2.6.4-1) ... 307s Setting up libunistring5:s390x (1.3-1) ... 307s Setting up autopoint (0.23.1-1) ... 307s Setting up libsepol-dev:s390x (3.7-1) ... 307s Setting up pkgconf-bin (1.8.1-4) ... 307s Setting up autoconf (2.72-3) ... 307s Setting up libpcre2-posix3:s390x (10.42-4ubuntu3) ... 307s Setting up dwz (0.15-1build6) ... 307s Setting up libuchardet0:s390x (0.0.8-1build1) ... 307s Setting up debugedit (1:5.1-2) ... 307s Setting up libapparmor-dev:s390x (4.1.0~beta5-0ubuntu2) ... 307s Setting up libcap-dev:s390x (1:2.66-5ubuntu3) ... 307s Setting up libxml2:s390x (2.12.7+dfsg+really2.9.14-0.2ubuntu3) ... 307s Setting up automake (1:1.17-3) ... 307s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 307s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 307s Setting up gettext (0.23.1-1) ... 307s Setting up libpcre2-dev:s390x (10.42-4ubuntu3) ... 307s Setting up libtool (2.5.4-3build1) ... 307s Setting up libselinux1-dev:s390x (3.7-3ubuntu2) ... 307s Setting up libsubunit-dev:s390x (1.4.2-3build1) ... 307s Setting up pkgconf:s390x (1.8.1-4) ... 307s Setting up intltool-debian (0.35.0+20060710.6) ... 307s Setting up dh-autoreconf (20) ... 307s Setting up check:s390x (0.15.2-3) ... 307s Setting up pkg-config:s390x (1.8.1-4) ... 307s Setting up dh-strip-nondeterminism (1.14.1-2) ... 307s Setting up groff-base (1.23.0-7) ... 307s Setting up po-debconf (1.0.21+nmu1) ... 307s Setting up man-db (2.13.0-1) ... 307s Not building database; man-db/auto-update is not 'true'. 307s Setting up debhelper (13.24.1ubuntu2) ... 307s Setting up sbuild-build-depends-main-dummy (0.invalid.0) ... 307s Processing triggers for libc-bin (2.40-4ubuntu1) ... 307s 307s +------------------------------------------------------------------------------+ 307s | Check architectures Thu, 20 Feb 2025 00:16:50 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s Arch check ok (s390x included in any) 307s 307s +------------------------------------------------------------------------------+ 307s | Build environment Thu, 20 Feb 2025 00:16:50 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s Kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 s390x (s390x) 307s Toolchain package versions: binutils_2.44-1ubuntu1 dpkg-dev_1.22.11ubuntu4 g++-14_14.2.0-17ubuntu1 gcc-14_14.2.0-17ubuntu1 libc6-dev_2.40-4ubuntu1 libstdc++-14-dev_14.2.0-17ubuntu1 libstdc++6_15-20250213-1ubuntu1 linux-libc-dev_6.12.0-15.15 307s Package versions: apt_2.9.30 autoconf_2.72-3 automake_1:1.17-3 autopoint_0.23.1-1 autotools-dev_20220109.1 base-files_13.5ubuntu3 base-passwd_3.6.6 bash_5.2.37-1ubuntu1 binutils_2.44-1ubuntu1 binutils-common_2.44-1ubuntu1 binutils-s390x-linux-gnu_2.44-1ubuntu1 bsdextrautils_2.40.2-14ubuntu1 bsdutils_1:2.40.2-14ubuntu1 build-essential_12.10ubuntu1 bzip2_1.0.8-6 check_0.15.2-3 coreutils_9.5-1ubuntu1 cpp_4:14.2.0-1ubuntu1 cpp-14_14.2.0-17ubuntu1 cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1 cpp-s390x-linux-gnu_4:14.2.0-1ubuntu1 dash_0.5.12-12ubuntu1 debconf_1.5.87ubuntu1 debhelper_13.24.1ubuntu2 debianutils_5.21 debugedit_1:5.1-2 dh-autoreconf_20 dh-strip-nondeterminism_1.14.1-2 diffutils_1:3.10-2 dpkg_1.22.11ubuntu4 dpkg-dev_1.22.11ubuntu4 dwz_0.15-1build6 e2fsprogs_1.47.2-1ubuntu1 expat_2.6.4-1 fakeroot_1.37-1 file_1:5.45-3build1 findutils_4.10.0-3 g++_4:14.2.0-1ubuntu1 g++-14_14.2.0-17ubuntu1 g++-14-s390x-linux-gnu_14.2.0-17ubuntu1 g++-s390x-linux-gnu_4:14.2.0-1ubuntu1 gcc_4:14.2.0-1ubuntu1 gcc-14_14.2.0-17ubuntu1 gcc-14-base_14.2.0-17ubuntu1 gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1 gcc-15-base_15-20250213-1ubuntu1 gcc-s390x-linux-gnu_4:14.2.0-1ubuntu1 gettext_0.23.1-1 gettext-base_0.23.1-1 gpgv_2.4.4-2ubuntu22 grep_3.11-4build1 groff-base_1.23.0-7 gzip_1.13-1ubuntu2 hostname_3.25 init-system-helpers_1.68 intltool-debian_0.35.0+20060710.6 libacl1_2.3.2-2 libapparmor-dev_4.1.0~beta5-0ubuntu2 libapparmor1_4.1.0~beta5-0ubuntu2 libapt-pkg7.0_2.9.30 libarchive-zip-perl_1.68-1 libasan8_15-20250213-1ubuntu1 libassuan9_3.0.1-2 libatomic1_15-20250213-1ubuntu1 libattr1_1:2.5.2-2 libaudit-common_1:4.0.2-2ubuntu1 libaudit1_1:4.0.2-2ubuntu1 libbinutils_2.44-1ubuntu1 libblkid1_2.40.2-14ubuntu1 libbsd0_0.12.2-2 libbz2-1.0_1.0.8-6 libc-bin_2.40-4ubuntu1 libc-dev-bin_2.40-4ubuntu1 libc6_2.40-4ubuntu1 libc6-dev_2.40-4ubuntu1 libcap-dev_1:2.66-5ubuntu3 libcap-ng0_0.8.5-4 libcap2_1:2.66-5ubuntu3 libcc1-0_15-20250213-1ubuntu1 libcom-err2_1.47.2-1ubuntu1 libcrypt-dev_1:4.4.38-1 libcrypt1_1:4.4.38-1 libctf-nobfd0_2.44-1ubuntu1 libctf0_2.44-1ubuntu1 libdb5.3t64_5.3.28+dfsg2-9 libdebconfclient0_0.274ubuntu1 libdebhelper-perl_13.24.1ubuntu2 libdpkg-perl_1.22.11ubuntu4 libdw1t64_0.192-4 libelf1t64_0.192-4 libexpat1_2.6.4-1 libext2fs2t64_1.47.2-1ubuntu1 libfakeroot_1.37-1 libfile-stripnondeterminism-perl_1.14.1-2 libgcc-14-dev_14.2.0-17ubuntu1 libgcc-s1_15-20250213-1ubuntu1 libgcrypt20_1.11.0-6ubuntu1 libgdbm-compat4t64_1.24-2 libgdbm6t64_1.24-2 libgmp10_2:6.3.0+dfsg-2ubuntu7 libgomp1_15-20250213-1ubuntu1 libgpg-error0_1.51-3 libisl23_0.27-1 libitm1_15-20250213-1ubuntu1 libjansson4_2.14-2build2 liblz4-1_1.10.0-3 liblzma5_5.6.3-1 libmagic-mgc_1:5.45-3build1 libmagic1t64_1:5.45-3build1 libmd0_1.1.0-2build2 libmount1_2.40.2-14ubuntu1 libmpc3_1.3.1-1build2 libmpfr6_4.2.1-1build2 libncursesw6_6.5+20250125-2 libnpth0t64_1.8-2 libpam-modules_1.5.3-7ubuntu4 libpam-modules-bin_1.5.3-7ubuntu4 libpam-runtime_1.5.3-7ubuntu4 libpam0g_1.5.3-7ubuntu4 libpcre2-16-0_10.42-4ubuntu3 libpcre2-32-0_10.42-4ubuntu3 libpcre2-8-0_10.42-4ubuntu3 libpcre2-dev_10.42-4ubuntu3 libpcre2-posix3_10.42-4ubuntu3 libperl5.40_5.40.0-8 libpipeline1_1.5.8-1 libpkgconf3_1.8.1-4 libproc2-0_2:4.0.4-4ubuntu5 libseccomp2_2.5.5-1ubuntu5 libselinux1_3.7-3ubuntu2 libselinux1-dev_3.7-3ubuntu2 libsemanage-common_3.7-2.1 libsemanage2_3.7-2.1 libsepol-dev_3.7-1 libsepol2_3.7-1 libsframe1_2.44-1ubuntu1 libsmartcols1_2.40.2-14ubuntu1 libss2_1.47.2-1ubuntu1 libssl3t64_3.4.0-1ubuntu2 libstdc++-14-dev_14.2.0-17ubuntu1 libstdc++6_15-20250213-1ubuntu1 libsubunit-dev_1.4.2-3build1 libsubunit0_1.4.2-3build1 libsystemd0_257.2-3ubuntu1 libtinfo6_6.5+20250125-2 libtool_2.5.4-3build1 libubsan1_15-20250213-1ubuntu1 libuchardet0_0.0.8-1build1 libudev1_257.2-3ubuntu1 libunistring5_1.3-1 libuuid1_2.40.2-14ubuntu1 libxml2_2.12.7+dfsg+really2.9.14-0.2ubuntu3 libxxhash0_0.8.3-2 libzstd1_1.5.6+dfsg-2 linux-libc-dev_6.12.0-15.15 login_1:4.16.0-2+really2.40.2-14ubuntu1 login.defs_1:4.16.0-7ubuntu1 logsave_1.47.2-1ubuntu1 lto-disabled-list_55 m4_1.4.19-5 make_4.4.1-1 man-db_2.13.0-1 mawk_1.3.4.20250131-1 mount_2.40.2-14ubuntu1 ncurses-base_6.5+20250125-2 ncurses-bin_6.5+20250125-2 openssl-provider-legacy_3.4.0-1ubuntu2 passwd_1:4.16.0-7ubuntu1 patch_2.7.6-7build3 perl_5.40.0-8 perl-base_5.40.0-8 perl-modules-5.40_5.40.0-8 pkg-config_1.8.1-4 pkgconf_1.8.1-4 pkgconf-bin_1.8.1-4 po-debconf_1.0.21+nmu1 procps_2:4.0.4-4ubuntu5 rpcsvc-proto_1.4.2-0ubuntu7 sbuild-build-depends-main-dummy_0.invalid.0 sed_4.9-2build1 sensible-utils_0.0.24 sysvinit-utils_3.14-1ubuntu1 tar_1.35+dfsg-3.1 ubuntu-keyring_2023.11.28.1 util-linux_2.40.2-14ubuntu1 xz-utils_5.6.3-1 zlib1g_1:1.3.dfsg+really1.3.1-1ubuntu1 307s 307s +------------------------------------------------------------------------------+ 307s | Build Thu, 20 Feb 2025 00:16:50 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s 307s Unpack source 307s ------------- 307s 307s -----BEGIN PGP SIGNED MESSAGE----- 307s Hash: SHA256 307s 307s Format: 3.0 (quilt) 307s Source: procenv 307s Binary: procenv 307s Architecture: any 307s Version: 0.51-0.2 307s Maintainer: James Hunt 307s Homepage: https://github.com/jamesodhunt/procenv 307s Standards-Version: 3.9.5 307s Testsuite: autopkgtest 307s Build-Depends: debhelper (>= 9.0.0), dh-autoreconf, pkg-config, libkvm-dev [kfreebsd-any], automake (>= 1.12), perl, expat, check, libnuma-dev [linux-i386 linux-amd64 linux-ia64 linux-mips linux-mipsel linux-mips64 linux-mips64el linux-powerpc linux-ppc64 linux-ppc64el linux-x32], libcap-dev [linux-any], libselinux1-dev [linux-any], libapparmor-dev [linux-any] 307s Package-List: 307s procenv deb utils optional arch=any 307s Checksums-Sha1: 307s 7708454ba7c1f94c55147a3177cf31a13ffb15eb 245663 procenv_0.51.orig.tar.gz 307s a9e084069ba0a45bd4c3be2999f2e7ec8e84e538 71232 procenv_0.51-0.2.debian.tar.xz 307s Checksums-Sha256: 307s b831c14729e06a285cc13eba095817ce3b6d0ddf484b1264951b03ee4fe25bc9 245663 procenv_0.51.orig.tar.gz 307s edc9fd09256b7c51561f7572fad391a191b99c741e5b1be72eccdc0c8b0f160d 71232 procenv_0.51-0.2.debian.tar.xz 307s Files: 307s a1541f086f0b98e2ee0f7810b0140b7f 245663 procenv_0.51.orig.tar.gz 307s 66ff3b2bb9dafafe2329b1241edc88d2 71232 procenv_0.51-0.2.debian.tar.xz 307s 307s -----BEGIN PGP SIGNATURE----- 307s 307s iQIzBAEBCAAdFiEEkpeKbhleSSGCX3/w808JdE6fXdkFAl/TeZwACgkQ808JdE6f 307s Xdkm0hAAlvfqU25j0bcZJS4fN+Pm9CLLO0ZxuE8+0jx0nYGjGibBB9shSw3jdUFp 307s aZ8bUOWt1W73vdOfXi6K5eEwx+Pbu93oNs3APokOsmh2C3NIph4MFFN00gDlt5XN 307s Wj6xPGCDOogw/WrMw78XVTXizAOBhxF1WitIuo2H1btCcPSwMGdyOonQY6+5YN+u 307s oHol+h+KkzwitK4Jl7OkOa6rIJHJIYnB9Qv2AGOUdC0n540cIiQKxZ6buUfB86X1 307s +vMCaTSoXRupKIfuCM1iKmuYyEyZX85t1JH2kVUHqCPJNmZnbTZO1nanUf4DJm5/ 307s x6B4aacJonBBTNWoxw88CAP27mD/wz50GpePAhtgYX1dALR8aCnX+MATfjNeF71D 307s kpUCeB+2jWECZeivMIEupBGhpaod+ege5KB3W9QqrSLG5FBc5IE3pnR94a3nwPkl 307s qDzmzH9QGTMxYDTmYtahUK5iCeHIV9T9Q3+SOQE/j92MVsPoWtRU27j+L3AxQIu1 307s Mjq35byTUrc8DIbVmweukQ+uA59y2S0gGVr+1uNym62nBPBxhOLUBT11UVLX+rQh 307s 7YaCnIEb1Alvu2XxlvI7G+ppHpxg/EltToK3wg5GtyIuUCNSYxTGS5xPrcYdM458 307s uWKJbxbUyVSHrPvYWfAfcu3g43gCQ9878+Ap6i6w99D+uPeVE1o= 307s =nOYU 307s -----END PGP SIGNATURE----- 307s 307s gpgv: Signature made Fri Dec 11 13:52:28 2020 UTC 307s gpgv: using RSA key 92978A6E195E4921825F7FF0F34F09744E9F5DD9 307s gpgv: Can't check signature: No public key 307s dpkg-source: warning: cannot verify inline signature for ./procenv_0.51-0.2.dsc: no acceptable signature found 307s dpkg-source: info: extracting procenv in /build/reproducible-path/procenv-0.51 307s dpkg-source: info: unpacking procenv_0.51.orig.tar.gz 307s dpkg-source: info: unpacking procenv_0.51-0.2.debian.tar.xz 307s dpkg-source: info: using patch list from debian/patches/series 307s dpkg-source: info: applying gcc-10-sprintf.patch 307s dpkg-buildtree: error: unknown option 'is-rootless' 307s 307s Use --help for program usage information. 307s 307s Install fakeroot 307s ---------------- 307s 307s 307s Setup apt archive 307s ----------------- 307s 307s Merged Build-Depends: fakeroot 307s Filtered Build-Depends: fakeroot 307s dpkg-deb: building package 'sbuild-build-depends-fakeroot-dummy' in '/build/reproducible-path/resolver-oC6JDK/apt_archive/sbuild-build-depends-fakeroot-dummy.deb'. 307s Ign:1 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ InRelease 307s Get:2 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Release [615 B] 307s Ign:3 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Release.gpg 307s Get:4 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Sources [1512 B] 307s Get:5 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Packages [1364 B] 307s Fetched 3491 B in 0s (0 B/s) 307s Reading package lists... 307s Reading package lists... 307s 307s Install fakeroot build dependencies (apt-based resolver) 307s -------------------------------------------------------- 307s 307s Installing build dependencies 307s Reading package lists... 307s Building dependency tree... 307s Reading state information... 307s The following NEW packages will be installed: 307s sbuild-build-depends-fakeroot-dummy 307s 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 307s Need to get 630 B of archives. 307s After this operation, 0 B of additional disk space will be used. 307s Get:1 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ sbuild-build-depends-fakeroot-dummy 0.invalid.0 [630 B] 307s Fetched 630 B in 0s (0 B/s) 307s Selecting previously unselected package sbuild-build-depends-fakeroot-dummy. 307s (Reading database ... 12546 files and directories currently installed.) 307s Preparing to unpack .../sbuild-build-depends-fakeroot-dummy_0.invalid.0_s390x.deb ... 307s Unpacking sbuild-build-depends-fakeroot-dummy (0.invalid.0) ... 307s Setting up sbuild-build-depends-fakeroot-dummy (0.invalid.0) ... 307s 307s Check disk space 307s ---------------- 307s 307s Sufficient free space for build 307s 307s User Environment 307s ---------------- 307s 307s APT_CONFIG=/var/lib/sbuild/apt.conf 307s DEB_BUILD_OPTIONS=parallel=2 307s HOME=/sbuild-nonexistent 307s LANG=C.UTF-8 307s LC_ALL=C.UTF-8 307s LOGNAME=ubuntu 307s PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games 307s SCHROOT_ALIAS_NAME=plucky-s390x-sbuild 307s SCHROOT_CHROOT_NAME=plucky-s390x-sbuild 307s SCHROOT_COMMAND=env 307s SCHROOT_GID=1000 307s SCHROOT_GROUP=ubuntu 307s SCHROOT_SESSION_ID=plucky-s390x-sbuild-19efcf6b-9ec2-4021-b1e6-6555061bbd68 307s SCHROOT_UID=1000 307s SCHROOT_USER=ubuntu 307s SHELL=/bin/sh 307s USER=ubuntu 307s 307s dpkg-buildpackage 307s ----------------- 307s 307s Command: dpkg-buildpackage --sanitize-env -us -uc -b 307s dpkg-buildpackage: info: source package procenv 307s dpkg-buildpackage: info: source version 0.51-0.2 307s dpkg-buildpackage: info: source distribution unstable 307s dpkg-buildpackage: info: source changed by Gianfranco Costamagna 307s dpkg-source --before-build . 307s dpkg-buildpackage: info: host architecture s390x 307s fakeroot debian/rules clean 307s dh clean --with autoreconf 307s dh: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_clean 307s dh_clean: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s debian/rules build 307s dh build --with autoreconf 307s dh: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_update_autotools_config 307s cp: warning: behavior of -n is non-portable and may change in future; use --update=none instead 307s cp: warning: behavior of -n is non-portable and may change in future; use --update=none instead 307s dh_autoreconf 307s configure.ac:17: warning: The macro 'AC_GNU_SOURCE' is obsolete. 307s configure.ac:17: You should run autoupdate. 307s ./lib/autoconf/specific.m4:489: AC_GNU_SOURCE is expanded from... 307s configure.ac:17: the top level 307s configure.ac:212: warning: AC_OUTPUT should be used without arguments. 307s configure.ac:212: You should run autoupdate. 307s debian/rules override_dh_auto_configure 307s make[1]: Entering directory '/build/reproducible-path/procenv-0.51' 307s dh_auto_configure -- --enable-reproducible-build 307s dh_auto_configure: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s ./configure --build=s390x-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-option-checking --disable-silent-rules --libdir=\${prefix}/lib/s390x-linux-gnu --libexecdir=\${prefix}/lib/s390x-linux-gnu --disable-maintainer-mode --disable-dependency-tracking --enable-reproducible-build 307s checking for gcc... gcc 307s checking whether the C compiler works... yes 307s checking for C compiler default output file name... a.out 307s checking for suffix of executables... 307s checking whether we are cross compiling... no 307s checking for suffix of object files... o 307s checking whether the compiler supports GNU C... yes 307s checking whether gcc accepts -g... yes 307s checking for gcc option to enable C11 features... none needed 307s checking whether gcc understands -c and -o together... yes 307s checking for stdio.h... yes 307s checking for stdlib.h... yes 307s checking for string.h... yes 307s checking for inttypes.h... yes 307s checking for stdint.h... yes 307s checking for strings.h... yes 307s checking for sys/stat.h... yes 307s checking for sys/types.h... yes 307s checking for unistd.h... yes 307s checking for wchar.h... yes 307s checking for minix/config.h... no 307s checking whether it is safe to define __EXTENSIONS__... yes 307s checking whether _XOPEN_SOURCE should be defined... no 307s checking for gcc option to enable large file support... none needed 307s checking build system type... s390x-ibm-linux-gnu 307s checking host system type... s390x-ibm-linux-gnu 307s checking target system type... s390x-ibm-linux-gnu 307s checking for gcc... (cached) gcc 307s checking whether the compiler supports GNU C... (cached) yes 307s checking whether gcc accepts -g... (cached) yes 307s checking for gcc option to enable C11 features... (cached) none needed 307s checking whether gcc understands -c and -o together... (cached) yes 307s checking for a BSD-compatible install... /usr/bin/install -c 307s checking for pkg-config... /usr/bin/pkg-config 307s checking pkg-config is at least version 0.9.0... yes 307s checking for check... yes 307s checking for linux/securebits.h... yes 307s checking for pthread.h... yes 307s checking for _Bool... yes 307s checking for stdbool.h that conforms to C99 or later... yes 307s checking for clock_gettime... yes 307s checking for getcwd... yes 307s checking for localtime_r... yes 307s checking for strcasecmp... yes 307s checking for strchr... yes 307s checking for strstr... yes 307s checking for sched_getcpu... yes 307s checking for ttyname... yes 307s checking for getresuid... yes 307s checking for getresgid... yes 307s checking for cpuset_alloc... no 307s checking for library containing kvm_openfiles... no 307s checking for library containing numa_available... no 307s checking for numa.h... no 307s checking for library containing cap_getmode... no 307s checking for sys/capability.h... yes 307s checking for library containing cap_init... -lcap 307s checking for library containing pthread_create... none required 307s checking for library containing getpidcon... -lselinux 307s checking for selinux/selinux.h... yes 307s checking for library containing aa_gettaskcon... -lapparmor 307s checking for library containing clock_gettime... none required 307s checking for sys/apparmor.h... yes 307s ./configure: line 6152: https://github.com/jamesodhunt/procenv: No such file or directory 307s checking whether sleep supports fractional seconds... yes 307s checking filesystem timestamp resolution... 0.01 307s checking whether build environment is sane... yes 307s checking for a race-free mkdir -p... /usr/bin/mkdir -p 307s checking for gawk... no 307s checking for mawk... mawk 307s checking whether make sets $(MAKE)... yes 307s checking whether make supports the include directive... yes (GNU style) 307s checking whether make supports nested variables... yes 307s checking xargs -n works... yes 307s checking dependency style of gcc... none 307s checking whether CC supports -Werror=format-security... yes 307s ## ---------------------------------------------------------------------------------------------------------------------- ## 307s ## checking that test './src/tests/show_compiler_details' runs (output an aide to debugging should procenv fail to build) ## 307s ## ---------------------------------------------------------------------------------------------------------------------- ## 307s XXX:-------------------------------------------------- 307s XXX: ./src/tests/show_compiler_details: preprocessor ('cpp') version 307s 307s cpp (Ubuntu 14.2.0-17ubuntu1) 14.2.0 307s Copyright (C) 2024 Free Software Foundation, Inc. 307s This is free software; see the source for copying conditions. There is NO 307s warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 307s 307s 307s XXX:-------------------------------------------------- 307s XXX: ./src/tests/show_compiler_details: compiler ('gcc') version 307s 307s gcc (Ubuntu 14.2.0-17ubuntu1) 14.2.0 307s Copyright (C) 2024 Free Software Foundation, Inc. 307s This is free software; see the source for copying conditions. There is NO 307s warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 307s 307s 307s XXX:-------------------------------------------------- 307s XXX: ./src/tests/show_compiler_details: linker ('ld') version 307s 307s GNU ld (GNU Binutils for Ubuntu) 2.44 307s Copyright (C) 2025 Free Software Foundation, Inc. 307s This program is free software; you may redistribute it under the terms of 307s the GNU General Public License version 3 or (at your option) a later version. 307s This program has absolutely no warranty. 307s 307s XXX:-------------------------------------------------- 307s XXX: ./src/tests/show_compiler_details: preprocessor ('cpp') search paths 307s 307s Using built-in specs. 307s COLLECT_GCC=cpp 307s Target: s390x-linux-gnu 307s Configured with: ../src/configure -v --with-pkgversion='Ubuntu 14.2.0-17ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-14/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2,rust --prefix=/usr --with-gcc-major-version-only --program-suffix=-14 --program-prefix=s390x-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --disable-multilib --enable-multiarch --disable-werror --with-arch=z13 --with-tune=z16 --disable-s390-excess-float-precision --with-long-double-128 --enable-checking=release --build=s390x-linux-gnu --host=s390x-linux-gnu --target=s390x-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=4 307s Thread model: posix 307s Supported LTO compression algorithms: zlib zstd 307s gcc version 14.2.0 (Ubuntu 14.2.0-17ubuntu1) 307s COLLECT_GCC_OPTIONS='-E' '-v' '-mtune=z16' '-march=z13' '-m64' '-mzarch' 307s /usr/libexec/gcc/s390x-linux-gnu/14/cc1 -E -quiet -v -imultiarch s390x-linux-gnu - -mtune=z16 -march=z13 -m64 -mzarch -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -dumpbase - 307s ignoring nonexistent directory "/usr/local/include/s390x-linux-gnu" 307s ignoring nonexistent directory "/usr/lib/gcc/s390x-linux-gnu/14/include-fixed/s390x-linux-gnu" 307s ignoring nonexistent directory "/usr/lib/gcc/s390x-linux-gnu/14/include-fixed" 307s ignoring nonexistent directory "/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/include" 307s #include "..." search starts here: 307s #include <...> search starts here: 307s /usr/lib/gcc/s390x-linux-gnu/14/include 307s /usr/local/include 307s /usr/include/s390x-linux-gnu 307s /usr/include 307s End of search list. 307s # 0 "" 307s # 0 "" 307s # 0 "" 307s # 1 "/usr/include/stdc-predef.h" 1 3 4 307s # 0 "" 2 307s # 1 "" 307s COMPILER_PATH=/usr/libexec/gcc/s390x-linux-gnu/14/:/usr/libexec/gcc/s390x-linux-gnu/14/:/usr/libexec/gcc/s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/ 307s LIBRARY_PATH=/usr/lib/gcc/s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/14/../../../s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../lib/:/lib/s390x-linux-gnu/:/lib/../lib/:/usr/lib/s390x-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/s390x-linux-gnu/14/../../../:/lib/:/usr/lib/ 307s COLLECT_GCC_OPTIONS='-E' '-v' '-mtune=z16' '-march=z13' '-m64' '-mzarch' 307s 307s XXX:-------------------------------------------------- 307s XXX: ./src/tests/show_compiler_details: preprocessor ('cpp') pre-defined symbols 307s 307s #define __DBL_MIN_EXP__ (-1021) 307s #define __VX__ 1 307s #define __UINT_LEAST16_MAX__ 0xffff 307s #define __ATOMIC_ACQUIRE 2 307s #define __WCHAR_MAX__ 0x7fffffff 307s #define __FLT128_MAX_10_EXP__ 4932 307s #define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F 307s #define __GCC_IEC_559_COMPLEX 2 307s #define __UINT_LEAST8_TYPE__ unsigned char 307s #define __FLT_MAX_EXP__ 128 307s #define __INTMAX_C(c) c ## L 307s #define __FLT32X_IS_IEC_60559__ 1 307s #define __CHAR_BIT__ 8 307s #define __UINT8_MAX__ 0xff 307s #define __SCHAR_WIDTH__ 8 307s #define __WINT_MAX__ 0xffffffffU 307s #define __FLT32_MIN_EXP__ (-125) 307s #define __ORDER_LITTLE_ENDIAN__ 1234 307s #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 307s #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 307s #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 307s #define __DBL_DENORM_MIN__ ((double)4.94065645841246544176568792868221372e-324L) 307s #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 307s #define __GCC_ATOMIC_CHAR_LOCK_FREE 2 307s #define __GCC_IEC_559 2 307s #define __FLT32X_DECIMAL_DIG__ 17 307s #define __FLT_EVAL_METHOD__ 0 307s #define __FLT64_DECIMAL_DIG__ 17 307s #define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 307s #define __UINT_FAST64_MAX__ 0xffffffffffffffffUL 307s #define __SIG_ATOMIC_TYPE__ int 307s #define __DBL_MIN_10_EXP__ (-307) 307s #define __FINITE_MATH_ONLY__ 0 307s #define __FLT32X_MAX_EXP__ 1024 307s #define __FLT64_HAS_INFINITY__ 1 307s #define __GNUC_PATCHLEVEL__ 0 307s #define __FLT32_HAS_DENORM__ 1 307s #define __SCHAR_MAX__ 0x7f 307s #define __FLT32_MAX_10_EXP__ 38 307s #define __DEC64_MAX_EXP__ 385 307s #define __INT8_C(c) c 307s #define __INT_LEAST8_WIDTH__ 8 307s #define __UINT_LEAST64_MAX__ 0xffffffffffffffffUL 307s #define __SHRT_MAX__ 0x7fff 307s #define __LDBL_MAX__ 1.18973149535723176508575932662800702e+4932L 307s #define __LDBL_IS_IEC_60559__ 1 307s #define __FLT64X_HAS_QUIET_NAN__ 1 307s #define __UINT_LEAST8_MAX__ 0xff 307s #define __GCC_ATOMIC_BOOL_LOCK_FREE 2 307s #define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 307s #define __UINTMAX_TYPE__ long unsigned int 307s #define __WCHAR_MIN__ (-__WCHAR_MAX__ - 1) 307s #define __zarch__ 1 307s #define __linux 1 307s #define __DEC32_EPSILON__ 1E-6DF 307s #define __HTM__ 1 307s #define __FLT_EVAL_METHOD_TS_18661_3__ 0 307s #define __UINT32_MAX__ 0xffffffffU 307s #define __LDBL_MAX_EXP__ 16384 307s #define __FLT128_MIN_EXP__ (-16381) 307s #define __WINT_MIN__ 0U 307s #define __FLT128_MIN_10_EXP__ (-4931) 307s #define __INT_LEAST16_WIDTH__ 16 307s #define __FLT128_MANT_DIG__ 113 307s #define __INT64_C(c) c ## L 307s #define __SSP_STRONG__ 3 307s #define __GCC_ATOMIC_POINTER_LOCK_FREE 2 307s #define __CHAR16_TYPE__ short unsigned int 307s #define __ATOMIC_SEQ_CST 5 307s #define __unix 1 307s #define __SIZEOF_INT__ 4 307s #define __FLT32X_MANT_DIG__ 53 307s #define __LONG_WIDTH__ 64 307s #define __FLT64X_EPSILON__ 1.92592994438723585305597794258492732e-34F64x 307s #define __STDC_HOSTED__ 1 307s #define __DEC64_MIN_EXP__ (-382) 307s #define __DBL_DIG__ 15 307s #define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F 307s #define __FLT32_IS_IEC_60559__ 1 307s #define __SHRT_WIDTH__ 16 307s #define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L 307s #define __STDC_UTF_16__ 1 307s #define __DBL_IS_IEC_60559__ 1 307s #define __DEC32_MAX__ 9.999999E96DF 307s #define __FLT64X_MAX_10_EXP__ 4932 307s #define __FLT64X_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F64x 307s #define __FP_FAST_FMA 1 307s #define __FLT32X_HAS_INFINITY__ 1 307s #define __INT32_MAX__ 0x7fffffff 307s #define __SIZEOF_PTRDIFF_T__ 8 307s #define __unix__ 1 307s #define __INT_WIDTH__ 32 307s #define __STDC_IEC_559__ 1 307s #define __STDC_ISO_10646__ 201706L 307s #define __DECIMAL_DIG__ 36 307s #define __STDC_IEC_559_COMPLEX__ 1 307s #define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 307s #define __gnu_linux__ 1 307s #define __FLT64X_MIN_10_EXP__ (-4931) 307s #define __LDBL_HAS_QUIET_NAN__ 1 307s #define __FLT64_MANT_DIG__ 53 307s #define __FLT64X_MANT_DIG__ 113 307s #define __GNUC__ 14 307s #define __pie__ 2 307s #define __FLT_HAS_DENORM__ 1 307s #define __SIZEOF_LONG_DOUBLE__ 16 307s #define __BIGGEST_ALIGNMENT__ 8 307s #define __FLT64_MAX_10_EXP__ 308 307s #define __DBL_MAX__ ((double)1.79769313486231570814527423731704357e+308L) 307s #define __INT_FAST32_MAX__ 0x7fffffffffffffffL 307s #define __DBL_HAS_INFINITY__ 1 307s #define __s390__ 1 307s #define __INT64_MAX__ 0x7fffffffffffffffL 307s #define __HAVE_SPECULATION_SAFE_VALUE 1 307s #define __DEC32_MIN_EXP__ (-94) 307s #define __INTPTR_WIDTH__ 64 307s #define __UINT_LEAST32_MAX__ 0xffffffffU 307s #define __FLT32X_HAS_DENORM__ 1 307s #define __INT_FAST16_TYPE__ long int 307s #define __LDBL_HAS_DENORM__ 1 307s #define __FLT128_HAS_INFINITY__ 1 307s #define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL 307s #define __DEC32_MIN__ 1E-95DF 307s #define __ARCH__ 11 307s #define __DBL_MAX_EXP__ 1024 307s #define __WCHAR_WIDTH__ 32 307s #define __DEC128_EPSILON__ 1E-33DL 307s #define __GCC_ATOMIC_LONG_LOCK_FREE 2 307s #define __PTRDIFF_MAX__ 0x7fffffffffffffffL 307s #define __FLT32_HAS_QUIET_NAN__ 1 307s #define __LONG_LONG_MAX__ 0x7fffffffffffffffLL 307s #define __SIZEOF_SIZE_T__ 8 307s #define __FLT64X_MIN_EXP__ (-16381) 307s #define __SIZEOF_WINT_T__ 4 307s #define __LONG_LONG_WIDTH__ 64 307s #define __FLT32_MAX_EXP__ 128 307s #define __GXX_ABI_VERSION 1019 307s #define __FLT_MIN_EXP__ (-125) 307s #define __GCC_HAVE_DWARF2_CFI_ASM 1 307s #define __INT16_MAX__ 0x7fff 307s #define __INT_FAST64_TYPE__ long int 307s #define __FP_FAST_FMAF 1 307s #define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128 307s #define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 307s #define __FLT64X_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F64x 307s #define __SIZEOF_POINTER__ 8 307s #define __SIZE_TYPE__ long unsigned int 307s #define __LP64__ 1 307s #define __DBL_HAS_QUIET_NAN__ 1 307s #define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x 307s #define __FLT64_MIN_EXP__ (-1021) 307s #define __FLT64_MIN_10_EXP__ (-307) 307s #define __FLT64X_DECIMAL_DIG__ 36 307s #define __DEC128_MIN__ 1E-6143DL 307s #define __REGISTER_PREFIX__ 307s #define __UINT16_MAX__ 0xffff 307s #define __DBL_HAS_DENORM__ 1 307s #define __LDBL_HAS_INFINITY__ 1 307s #define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 307s #define __UINT8_TYPE__ unsigned char 307s #define __FLT_DIG__ 6 307s #define __NO_INLINE__ 1 307s #define __DEC_EVAL_METHOD__ 2 307s #define __FLT_MANT_DIG__ 24 307s #define __LDBL_DECIMAL_DIG__ 36 307s #define __VERSION__ "14.2.0" 307s #define __UINT64_C(c) c ## UL 307s #define _STDC_PREDEF_H 1 307s #define __INT_LEAST32_MAX__ 0x7fffffff 307s #define __GCC_ATOMIC_INT_LOCK_FREE 2 307s #define __FLT128_MAX_EXP__ 16384 307s #define __FLT32_MANT_DIG__ 24 307s #define __FLOAT_WORD_ORDER__ __ORDER_BIG_ENDIAN__ 307s #define __STDC_IEC_60559_COMPLEX__ 201404L 307s #define __FLT128_HAS_DENORM__ 1 307s #define __FLT128_DIG__ 33 307s #define __INT32_C(c) c 307s #define __DEC64_EPSILON__ 1E-15DD 307s #define __ORDER_PDP_ENDIAN__ 3412 307s #define __DEC128_MIN_EXP__ (-6142) 307s #define __INT_FAST32_TYPE__ long int 307s #define __UINT_LEAST16_TYPE__ short unsigned int 307s #define unix 1 307s #define __UINT64_MAX__ 0xffffffffffffffffUL 307s #define __FLT_IS_IEC_60559__ 1 307s #define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-32BE" 307s #define __FLT64X_DIG__ 33 307s #define __INT8_TYPE__ signed char 307s #define __ELF__ 1 307s #define __GCC_ASM_FLAG_OUTPUTS__ 1 307s #define __FLT_RADIX__ 2 307s #define __INT_LEAST16_TYPE__ short int 307s #define __LDBL_EPSILON__ 1.92592994438723585305597794258492732e-34L 307s #define __UINTMAX_C(c) c ## UL 307s #define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 307s #define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x 307s #define __SIG_ATOMIC_MAX__ 0x7fffffff 307s #define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 307s #define __USER_LABEL_PREFIX__ 307s #define __STDC_IEC_60559_BFP__ 201404L 307s #define __FLT32_HAS_INFINITY__ 1 307s #define __SIZEOF_LONG__ 8 307s #define __LDBL_DIG__ 33 307s #define __FLT64_IS_IEC_60559__ 1 307s #define __FLT32X_MIN_EXP__ (-1021) 307s #define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF 307s #define __INT_FAST16_MAX__ 0x7fffffffffffffffL 307s #define __DBL_EPSILON__ ((double)2.22044604925031308084726333618164062e-16L) 307s #define __FLT64_DIG__ 15 307s #define __UINT_FAST32_MAX__ 0xffffffffffffffffUL 307s #define __UINT_LEAST64_TYPE__ long unsigned int 307s #define __FLT_HAS_QUIET_NAN__ 1 307s #define __FLT_MAX_10_EXP__ 38 307s #define __LONG_MAX__ 0x7fffffffffffffffL 307s #define __FLT64X_HAS_DENORM__ 1 307s #define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL 307s #define __FLT_HAS_INFINITY__ 1 307s #define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" 307s #define __CHAR_UNSIGNED__ 1 307s #define __UINT_FAST16_TYPE__ long unsigned int 307s #define __DEC64_MAX__ 9.999999999999999E384DD 307s #define __INT_FAST32_WIDTH__ 64 307s #define __PRAGMA_REDEFINE_EXTNAME 1 307s #define __SIZE_WIDTH__ 64 307s #define __INT_LEAST16_MAX__ 0x7fff 307s #define __DEC64_MANT_DIG__ 16 307s #define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 307s #define __SIG_ATOMIC_WIDTH__ 32 307s #define __INT_LEAST64_TYPE__ long int 307s #define __INT16_TYPE__ short int 307s #define __INT_LEAST8_TYPE__ signed char 307s #define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 307s #define __STDC_VERSION__ 201710L 307s #define __DEC32_MAX_EXP__ 97 307s #define __INT_FAST8_MAX__ 0x7f 307s #define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 307s #define __INTPTR_MAX__ 0x7fffffffffffffffL 307s #define linux 1 307s #define __FLT64_HAS_QUIET_NAN__ 1 307s #define __FLT32_MIN_10_EXP__ (-37) 307s #define __FLT32X_DIG__ 15 307s #define __UINT16_C(c) c 307s #define __PTRDIFF_WIDTH__ 64 307s #define __LDBL_MANT_DIG__ 113 307s #define __INT_FAST16_WIDTH__ 64 307s #define __FLT64X_MAX__ 1.18973149535723176508575932662800702e+4932F64x 307s #define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) 307s #define __INTPTR_TYPE__ long int 307s #define __UINT16_TYPE__ short unsigned int 307s #define __WCHAR_TYPE__ int 307s #define __SIZEOF_FLOAT__ 4 307s #define __pic__ 2 307s #define __UINTPTR_MAX__ 0xffffffffffffffffUL 307s #define __INT_FAST64_WIDTH__ 64 307s #define __FLT32_DECIMAL_DIG__ 9 307s #define __INT_FAST64_MAX__ 0x7fffffffffffffffL 307s #define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 307s #define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F 307s #define __FLT64X_MAX_EXP__ 16384 307s #define __UINT_FAST64_TYPE__ long unsigned int 307s #define __INT_MAX__ 0x7fffffff 307s #define __linux__ 1 307s #define __LONG_DOUBLE_128__ 1 307s #define __INT64_TYPE__ long int 307s #define __ORDER_BIG_ENDIAN__ 4321 307s #define __DBL_MANT_DIG__ 53 307s #define __INT_LEAST64_MAX__ 0x7fffffffffffffffL 307s #define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 307s #define __FP_FAST_FMAF32 1 307s #define __DEC64_MIN__ 1E-383DD 307s #define __WINT_TYPE__ unsigned int 307s #define __UINT_LEAST32_TYPE__ unsigned int 307s #define __SIZEOF_SHORT__ 2 307s #define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32 307s #define __LDBL_MIN_EXP__ (-16381) 307s #define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 307s #define __WINT_WIDTH__ 32 307s #define __FP_FAST_FMAF64 1 307s #define __INT_LEAST8_MAX__ 0x7f 307s #define __INT_LEAST64_WIDTH__ 64 307s #define __FLT32X_MAX_10_EXP__ 308 307s #define __s390x__ 1 307s #define __SIZEOF_INT128__ 16 307s #define __FLT64X_IS_IEC_60559__ 1 307s #define __LDBL_MAX_10_EXP__ 4932 307s #define __ATOMIC_RELAXED 0 307s #define __INT_LEAST32_TYPE__ int 307s #define _LP64 1 307s #define __UINT8_C(c) c 307s #define __FLT64_MAX_EXP__ 1024 307s #define __SIZEOF_WCHAR_T__ 4 307s #define __UINT64_TYPE__ long unsigned int 307s #define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64 307s #define __FLT128_HAS_QUIET_NAN__ 1 307s #define __INTMAX_MAX__ 0x7fffffffffffffffL 307s #define __INT_FAST8_TYPE__ signed char 307s #define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x 307s #define __GNUC_STDC_INLINE__ 1 307s #define __FLT64_HAS_DENORM__ 1 307s #define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 307s #define __FP_FAST_FMAF32x 1 307s #define __DBL_DECIMAL_DIG__ 17 307s #define __STDC_UTF_32__ 1 307s #define __INT_FAST8_WIDTH__ 8 307s #define __BYTE_ORDER__ __ORDER_BIG_ENDIAN__ 307s #define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x 307s #define __DBL_NORM_MAX__ ((double)1.79769313486231570814527423731704357e+308L) 307s #define __FLT64X_HAS_INFINITY__ 1 307s #define __INTMAX_WIDTH__ 64 307s #define __FLT32_DIG__ 6 307s #define __UINT32_C(c) c ## U 307s #define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F 307s #define __FLT128_IS_IEC_60559__ 1 307s #define __INT8_MAX__ 0x7f 307s #define __DBL_MIN__ ((double)2.22507385850720138309023271733240406e-308L) 307s #define __PIC__ 2 307s #define __UINT_FAST32_TYPE__ long unsigned int 307s #define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x 307s #define __CHAR32_TYPE__ unsigned int 307s #define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F 307s #define __INT32_TYPE__ int 307s #define __SIZEOF_DOUBLE__ 8 307s #define __UINT_FAST8_MAX__ 0xff 307s #define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 307s #define __INT_LEAST32_WIDTH__ 32 307s #define __INTMAX_TYPE__ long int 307s #define __DEC128_MAX_EXP__ 6145 307s #define __FLT32X_HAS_QUIET_NAN__ 1 307s #define __ATOMIC_CONSUME 1 307s #define __GNUC_MINOR__ 2 307s #define __UINTMAX_MAX__ 0xffffffffffffffffUL 307s #define __DEC32_MANT_DIG__ 7 307s #define __PIE__ 2 307s #define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x 307s #define __DBL_MAX_10_EXP__ 308 307s #define __LDBL_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966L 307s #define __INT16_C(c) c 307s #define __ATOMIC_RELEASE 3 307s #define __STDC__ 1 307s #define __PTRDIFF_TYPE__ long int 307s #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 1 307s #define __UINT32_TYPE__ unsigned int 307s #define __FLT32X_MIN_10_EXP__ (-307) 307s #define __UINTPTR_TYPE__ long unsigned int 307s #define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD 307s #define __DEC128_MANT_DIG__ 34 307s #define __LDBL_MIN_10_EXP__ (-4931) 307s #define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 307s #define __SIZEOF_LONG_LONG__ 8 307s #define __FLT128_DECIMAL_DIG__ 36 307s #define __GCC_ATOMIC_LLONG_LOCK_FREE 2 307s #define __FLT_DECIMAL_DIG__ 9 307s #define __UINT_FAST16_MAX__ 0xffffffffffffffffUL 307s #define __LDBL_NORM_MAX__ 1.18973149535723176508575932662800702e+4932L 307s #define __FLT_MIN_10_EXP__ (-37) 307s #define __GCC_ATOMIC_SHORT_LOCK_FREE 2 307s #define __SIZE_MAX__ 0xffffffffffffffffUL 307s #define __UINT_FAST8_TYPE__ unsigned char 307s #define __ATOMIC_ACQ_REL 4 307s 307s XXX:-------------------------------------------------- 307s XXX: ./src/tests/show_compiler_details: compiler ('gcc') features 307s 307s Using built-in specs. 307s COLLECT_GCC=gcc 307s Target: s390x-linux-gnu 307s Configured with: ../src/configure -v --with-pkgversion='Ubuntu 14.2.0-17ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-14/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2,rust --prefix=/usr --with-gcc-major-version-only --program-suffix=-14 --program-prefix=s390x-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --disable-multilib --enable-multiarch --disable-werror --with-arch=z13 --with-tune=z16 --disable-s390-excess-float-precision --with-long-double-128 --enable-checking=release --build=s390x-linux-gnu --host=s390x-linux-gnu --target=s390x-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=4 307s Thread model: posix 307s Supported LTO compression algorithms: zlib zstd 307s gcc version 14.2.0 (Ubuntu 14.2.0-17ubuntu1) 307s 307s XXX:-------------------------------------------------- 307s XXX: ./src/tests/show_compiler_details: compiler ('gcc') search paths 307s 307s install: /usr/lib/gcc/s390x-linux-gnu/14/ 307s programs: =/usr/libexec/gcc/s390x-linux-gnu/14/:/usr/libexec/gcc/s390x-linux-gnu/14/:/usr/libexec/gcc/s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/bin/s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/bin/s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/bin/ 307s libraries: =/usr/lib/gcc/s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/lib/s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/lib/s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/lib/../lib/:/usr/lib/gcc/s390x-linux-gnu/14/../../../s390x-linux-gnu/14/:/usr/lib/gcc/s390x-linux-gnu/14/../../../s390x-linux-gnu/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../lib/:/lib/s390x-linux-gnu/14/:/lib/s390x-linux-gnu/:/lib/../lib/:/usr/lib/s390x-linux-gnu/14/:/usr/lib/s390x-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/s390x-linux-gnu/14/../../../../s390x-linux-gnu/lib/:/usr/lib/gcc/s390x-linux-gnu/14/../../../:/lib/:/usr/lib/ 307s 307s XXX:-------------------------------------------------- 307s ## ---------------------------------------------------------------- ## 307s ## showing result of test './src/tests/show_compiler_details': pass ## 307s ## ---------------------------------------------------------------- ## 307s checking that generated files are newer than configure... done 307s configure: creating ./config.status 307s config.status: creating Makefile 307s config.status: creating src/Makefile 307s config.status: creating procenv.spec 307s config.status: creating config.h 307s config.status: executing depfiles commands 307s 307s Configure settings for procenv version 0.51 307s 307s Build platform : linux 307s Reproducible build : yes 307s Debug build : no 307s Check unit test framework : yes 307s 307s Libraries: 307s 307s libapparmor : yes 307s libselinux : yes 307s libcap : yes 307s libnuma : no 307s libpthread : yes 307s libkvm : no 307s 307s make[1]: Leaving directory '/build/reproducible-path/procenv-0.51' 307s dh_auto_build 307s dh_auto_build: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s make -j1 307s make[1]: Entering directory '/build/reproducible-path/procenv-0.51' 307s make all-recursive 307s make[2]: Entering directory '/build/reproducible-path/procenv-0.51' 307s Making all in src 307s make[3]: Entering directory '/build/reproducible-path/procenv-0.51/src' 307s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o procenv-procenv.o `test -f 'procenv.c' || echo './'`procenv.c 307s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o procenv-pr_list.o `test -f 'pr_list.c' || echo './'`pr_list.c 307s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o procenv-pstring.o `test -f 'pstring.c' || echo './'`pstring.c 307s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o procenv-string-util.o `test -f 'string-util.c' || echo './'`string-util.c 307s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o procenv-output.o `test -f 'output.c' || echo './'`output.c 307s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o procenv-util.o `test -f 'util.c' || echo './'`util.c 307s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o platform/procenv-platform-generic.o `test -f 'platform/platform-generic.c' || echo './'`platform/platform-generic.c 307s gcc -DHAVE_CONFIG_H -I. -I.. -I . -I ./platform -I ./platform/linux -D PROCENV_PLATFORM_LINUX -Wdate-time -D_FORTIFY_SOURCE=3 -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o platform/linux/procenv-platform.o `test -f 'platform/linux/platform.c' || echo './'`platform/linux/platform.c 307s gcc -pedantic -std=gnu99 -Wall -Wunused -fstack-protector -Wformat -fdata-sections -ffunction-sections -Werror -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -Wl,--gc-sections -Wl,-Bsymbolic-functions -Wl,-z,relro -o procenv procenv-procenv.o procenv-pr_list.o procenv-pstring.o procenv-string-util.o procenv-output.o procenv-util.o platform/procenv-platform-generic.o platform/linux/procenv-platform.o -lapparmor -lselinux -lcap 307s make[3]: Leaving directory '/build/reproducible-path/procenv-0.51/src' 307s make[3]: Entering directory '/build/reproducible-path/procenv-0.51' 307s make[3]: Leaving directory '/build/reproducible-path/procenv-0.51' 307s make[2]: Leaving directory '/build/reproducible-path/procenv-0.51' 307s make[1]: Leaving directory '/build/reproducible-path/procenv-0.51' 307s dh_auto_test 307s dh_auto_test: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s make -j1 check "TESTSUITEFLAGS=-j1 --verbose" VERBOSE=1 307s make[1]: Entering directory '/build/reproducible-path/procenv-0.51' 307s Making check in src 307s make[2]: Entering directory '/build/reproducible-path/procenv-0.51/src' 307s make check_pr_list 307s make[3]: Entering directory '/build/reproducible-path/procenv-0.51/src' 307s gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=3 -pthread -I../src -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o tests/check_pr_list-check_pr_list.o `test -f 'tests/check_pr_list.c' || echo './'`tests/check_pr_list.c 307s gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=3 -pthread -I../src -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -c -o check_pr_list-pr_list.o `test -f 'pr_list.c' || echo './'`pr_list.c 307s gcc -pthread -I../src -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 -Wl,-Bsymbolic-functions -Wl,-z,relro -o check_pr_list tests/check_pr_list-check_pr_list.o check_pr_list-pr_list.o -lcheck_pic -lrt -lm -lsubunit -lapparmor -lselinux -lcap 307s make[3]: Leaving directory '/build/reproducible-path/procenv-0.51/src' 307s make check-TESTS 307s make[3]: Entering directory '/build/reproducible-path/procenv-0.51/src' 307s sed -e 's|[@]builddir[@]|../src|g' \ 307s -e 's|[@]man_path[@]|../man/procenv.1|g' \ 307s -e 's|[@]package_url[@]|https://github.com/jamesodhunt/procenv|g' \ 307s -e 's|[@]package_url[@]|https://github.com/jamesodhunt/procenv|g' \ 307s -e 's|[@]procenv_platform[@]|linux|g' \ 307s tests/check_all_args.in > check_all_args 307s chmod +x check_all_args 307s XXX:-------------------------------------------------- 307s XXX: ./tests/show_machine_details: Memory details 307s 307s MemTotal: 4092964 kB 307s MemFree: 2499136 kB 307s MemAvailable: 3694964 kB 307s Buffers: 70892 kB 307s Cached: 1146580 kB 307s SwapCached: 0 kB 307s Active: 241792 kB 307s Inactive: 1068636 kB 307s Active(anon): 99940 kB 307s Inactive(anon): 0 kB 307s Active(file): 141852 kB 307s Inactive(file): 1068636 kB 307s Unevictable: 25136 kB 307s Mlocked: 25136 kB 307s SwapTotal: 0 kB 307s SwapFree: 0 kB 307s Zswap: 0 kB 307s Zswapped: 0 kB 307s Dirty: 139200 kB 307s Writeback: 0 kB 307s AnonPages: 118052 kB 307s Mapped: 66260 kB 307s Shmem: 324 kB 307s KReclaimable: 83500 kB 307s Slab: 147616 kB 307s SReclaimable: 83500 kB 307s SUnreclaim: 64116 kB 307s KernelStack: 2200 kB 307s PageTables: 7308 kB 307s SecPageTables: 0 kB 307s NFS_Unstable: 0 kB 307s Bounce: 0 kB 307s WritebackTmp: 0 kB 307s CommitLimit: 2046480 kB 307s Committed_AS: 253160 kB 307s VmallocTotal: 534773760 kB 307s VmallocUsed: 8796 kB 307s VmallocChunk: 0 kB 307s Percpu: 632 kB 307s AnonHugePages: 0 kB 307s ShmemHugePages: 0 kB 307s ShmemPmdMapped: 0 kB 307s FileHugePages: 0 kB 307s FilePmdMapped: 0 kB 307s CmaTotal: 0 kB 307s CmaFree: 0 kB 307s HugePages_Total: 0 307s HugePages_Free: 0 307s HugePages_Rsvd: 0 307s HugePages_Surp: 0 307s Hugepagesize: 1024 kB 307s Hugetlb: 0 kB 307s DirectMap4k: 76792 kB 307s DirectMap1M: 4117504 kB 307s DirectMap2G: 0 kB 307s 307s XXX:-------------------------------------------------- 307s XXX: ./tests/show_machine_details: ulimit details 307s 307s time(seconds) unlimited 307s file(blocks) unlimited 307s data(kbytes) unlimited 307s stack(kbytes) 8192 307s coredump(blocks) 0 307s memory(kbytes) unlimited 307s locked memory(kbytes) 511620 307s process 15897 307s nofiles 1024 307s vmemory(kbytes) unlimited 307s locks unlimited 307s rtprio 0 307s 307s XXX:-------------------------------------------------- 307s XXX: ./tests/show_machine_details: CPU count 307s 307s 2 307s 307s XXX:-------------------------------------------------- 307s XXX: ./tests/show_machine_details: CPU details 307s 307s vendor_id : IBM/S390 307s # processors : 2 307s bogomips per cpu: 3241.00 307s max thread id : 0 307s features : esan3 zarch stfle msa ldisp eimm dfp edat etf3eh highgprs te vx vxd vxe gs vxe2 vxp sort dflt 307s facilities : 0 1 2 3 4 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 47 48 49 50 51 52 53 54 57 58 59 60 61 64 65 69 71 72 73 74 75 76 77 78 80 81 82 129 130 131 133 134 135 138 139 140 146 147 148 150 151 152 155 156 307s cache0 : level=1 type=Data scope=Private size=128K line_size=256 associativity=8 307s cache1 : level=1 type=Instruction scope=Private size=128K line_size=256 associativity=8 307s cache2 : level=2 type=Data scope=Private size=4096K line_size=256 associativity=8 307s cache3 : level=2 type=Instruction scope=Private size=4096K line_size=256 associativity=8 307s cache4 : level=3 type=Unified scope=Shared size=262144K line_size=256 associativity=32 307s cache5 : level=4 type=Unified scope=Shared size=983040K line_size=256 associativity=60 307s processor 0: version = FF, identification = 0811B8, machine = 8561 307s processor 1: version = FF, identification = 0811B8, machine = 8561 307s 307s XXX:-------------------------------------------------- 307s XXX: ./tests/show_machine_details: Nested KVM support 307s 307s N 307s 307s XXX:-------------------------------------------------- 307s XXX: ./tests/show_machine_details: uname 307s 307s Linux autopkgtest 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 s390x s390x s390x GNU/Linux 307s 307s XXX:-------------------------------------------------- 307s XXX: ./tests/show_machine_details: kernel modules 307s 307s ./tests/show_machine_details: 50: lsmod: not found 307s 307s XXX:-------------------------------------------------- 307s XXX: ./tests/show_machine_details: distro details 307s 307s PRETTY_NAME="Ubuntu Plucky Puffin (development branch)" 307s NAME="Ubuntu" 307s VERSION_ID="25.04" 307s VERSION="25.04 (Plucky Puffin)" 307s VERSION_CODENAME=plucky 307s ID=ubuntu 307s ID_LIKE=debian 307s HOME_URL="https://www.ubuntu.com/" 307s SUPPORT_URL="https://help.ubuntu.com/" 307s BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 307s PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 307s UBUNTU_CODENAME=plucky 307s LOGO=ubuntu-logo 307s DISTRIB_ID=Ubuntu 307s DISTRIB_RELEASE=25.04 307s DISTRIB_CODENAME=plucky 307s DISTRIB_DESCRIPTION="Ubuntu Plucky Puffin (development branch)" 307s Ubuntu Plucky Puffin (development branch) \n \l 307s 307s 307s PASS: tests/show_machine_details 307s Running suite(s): procenv pr_list 307s 100%: Checks: 7, Failures: 0, Errors: 0 307s PASS: check_pr_list 307s INFO:LANG=C.UTF-8:LC_ALL=: language list: 'C C.UTF-8 POSIX' 307s INFO:LANG=C:LC_ALL=C: Running procenv version 0.51 tests for language 'C' 307s INFO:LANG=C:LC_ALL=C: Ensure '--help' works 307s INFO:LANG=C:LC_ALL=C: Ensure all documented options produce output 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -a 1>"/tmp/check_all_args.4ThniCIk3L" 2>"/tmp/check_all_args.rSUu1S265g"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -a 1>"/tmp/check_all_args.4ThniCIk3L" 2>"/tmp/check_all_args.rSUu1S265g"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -a 1>"/tmp/check_all_args.4ThniCIk3L" 2>"/tmp/check_all_args.rSUu1S265g"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -a' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --meta 1>"/tmp/check_all_args.80yfINyWUV" 2>"/tmp/check_all_args.4HJYDcuFuD"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --meta 1>"/tmp/check_all_args.80yfINyWUV" 2>"/tmp/check_all_args.4HJYDcuFuD"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --meta 1>"/tmp/check_all_args.80yfINyWUV" 2>"/tmp/check_all_args.4HJYDcuFuD"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --meta' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -A 1>"/tmp/check_all_args.1tPhKu8Osa" 2>"/tmp/check_all_args.MYrL9tFaET"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -A 1>"/tmp/check_all_args.1tPhKu8Osa" 2>"/tmp/check_all_args.MYrL9tFaET"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -A 1>"/tmp/check_all_args.1tPhKu8Osa" 2>"/tmp/check_all_args.MYrL9tFaET"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -A' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --arguments 1>"/tmp/check_all_args.fJ2csRImPx" 2>"/tmp/check_all_args.uiRpu7pnoU"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --arguments 1>"/tmp/check_all_args.fJ2csRImPx" 2>"/tmp/check_all_args.uiRpu7pnoU"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --arguments 1>"/tmp/check_all_args.fJ2csRImPx" 2>"/tmp/check_all_args.uiRpu7pnoU"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --arguments' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -b 1>"/tmp/check_all_args.MhH23lQIKd" 2>"/tmp/check_all_args.MWfW4Q65PL"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -b 1>"/tmp/check_all_args.MhH23lQIKd" 2>"/tmp/check_all_args.MWfW4Q65PL"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -b 1>"/tmp/check_all_args.MhH23lQIKd" 2>"/tmp/check_all_args.MWfW4Q65PL"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -b' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --libs 1>"/tmp/check_all_args.4GZRtHDTHR" 2>"/tmp/check_all_args.EfDxZpG6SV"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --libs 1>"/tmp/check_all_args.4GZRtHDTHR" 2>"/tmp/check_all_args.EfDxZpG6SV"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --libs 1>"/tmp/check_all_args.4GZRtHDTHR" 2>"/tmp/check_all_args.EfDxZpG6SV"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --libs' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -B 1>"/tmp/check_all_args.pjQyw2Mrhb" 2>"/tmp/check_all_args.Bz7yvJt6yu"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -B 1>"/tmp/check_all_args.pjQyw2Mrhb" 2>"/tmp/check_all_args.Bz7yvJt6yu"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -B 1>"/tmp/check_all_args.pjQyw2Mrhb" 2>"/tmp/check_all_args.Bz7yvJt6yu"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -B' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --libc 1>"/tmp/check_all_args.8LT06zr3FX" 2>"/tmp/check_all_args.h7l80Udzjv"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --libc 1>"/tmp/check_all_args.8LT06zr3FX" 2>"/tmp/check_all_args.h7l80Udzjv"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --libc 1>"/tmp/check_all_args.8LT06zr3FX" 2>"/tmp/check_all_args.h7l80Udzjv"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --libc' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -c 1>"/tmp/check_all_args.G38mIUelLR" 2>"/tmp/check_all_args.EyeURsX5DD"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -c 1>"/tmp/check_all_args.G38mIUelLR" 2>"/tmp/check_all_args.EyeURsX5DD"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -c 1>"/tmp/check_all_args.G38mIUelLR" 2>"/tmp/check_all_args.EyeURsX5DD"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -c' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --cgroups 1>"/tmp/check_all_args.MN9I1mJtM4" 2>"/tmp/check_all_args.lwuYpHd70K"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --cgroups 1>"/tmp/check_all_args.MN9I1mJtM4" 2>"/tmp/check_all_args.lwuYpHd70K"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --cgroups 1>"/tmp/check_all_args.MN9I1mJtM4" 2>"/tmp/check_all_args.lwuYpHd70K"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --cgroups' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -C 1>"/tmp/check_all_args.6gvMCKBCoU" 2>"/tmp/check_all_args.IocugWDCRL"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -C 1>"/tmp/check_all_args.6gvMCKBCoU" 2>"/tmp/check_all_args.IocugWDCRL"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -C 1>"/tmp/check_all_args.6gvMCKBCoU" 2>"/tmp/check_all_args.IocugWDCRL"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -C' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --cpu 1>"/tmp/check_all_args.bYCEdUywkJ" 2>"/tmp/check_all_args.QIyar0cQQy"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --cpu 1>"/tmp/check_all_args.bYCEdUywkJ" 2>"/tmp/check_all_args.QIyar0cQQy"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --cpu 1>"/tmp/check_all_args.bYCEdUywkJ" 2>"/tmp/check_all_args.QIyar0cQQy"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --cpu' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -d 1>"/tmp/check_all_args.r1mIN41itW" 2>"/tmp/check_all_args.lz9vYox4Zb"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -d 1>"/tmp/check_all_args.r1mIN41itW" 2>"/tmp/check_all_args.lz9vYox4Zb"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -d 1>"/tmp/check_all_args.r1mIN41itW" 2>"/tmp/check_all_args.lz9vYox4Zb"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -d' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --compiler 1>"/tmp/check_all_args.DlDYxnqpdW" 2>"/tmp/check_all_args.B2woS0QUdI"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --compiler 1>"/tmp/check_all_args.DlDYxnqpdW" 2>"/tmp/check_all_args.B2woS0QUdI"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --compiler 1>"/tmp/check_all_args.DlDYxnqpdW" 2>"/tmp/check_all_args.B2woS0QUdI"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --compiler' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -e 1>"/tmp/check_all_args.2hwCPjBURD" 2>"/tmp/check_all_args.QPdrQfod0T"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -e 1>"/tmp/check_all_args.2hwCPjBURD" 2>"/tmp/check_all_args.QPdrQfod0T"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -e 1>"/tmp/check_all_args.2hwCPjBURD" 2>"/tmp/check_all_args.QPdrQfod0T"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -e' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --environment 1>"/tmp/check_all_args.dQ7EM0N5if" 2>"/tmp/check_all_args.8mVyz54TVF"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --environment 1>"/tmp/check_all_args.dQ7EM0N5if" 2>"/tmp/check_all_args.8mVyz54TVF"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --environment 1>"/tmp/check_all_args.dQ7EM0N5if" 2>"/tmp/check_all_args.8mVyz54TVF"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --environment' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -E 1>"/tmp/check_all_args.TQop3juruz" 2>"/tmp/check_all_args.ifPQ4Ma9qN"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -E 1>"/tmp/check_all_args.TQop3juruz" 2>"/tmp/check_all_args.ifPQ4Ma9qN"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -E 1>"/tmp/check_all_args.TQop3juruz" 2>"/tmp/check_all_args.ifPQ4Ma9qN"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -E' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --semaphores 1>"/tmp/check_all_args.Zk5j1NH7jq" 2>"/tmp/check_all_args.XZyCI6veSV"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --semaphores 1>"/tmp/check_all_args.Zk5j1NH7jq" 2>"/tmp/check_all_args.XZyCI6veSV"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --semaphores 1>"/tmp/check_all_args.Zk5j1NH7jq" 2>"/tmp/check_all_args.XZyCI6veSV"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --semaphores' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -f 1>"/tmp/check_all_args.bizkZ7heWC" 2>"/tmp/check_all_args.zh9PzHD2Nu"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -f 1>"/tmp/check_all_args.bizkZ7heWC" 2>"/tmp/check_all_args.zh9PzHD2Nu"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -f 1>"/tmp/check_all_args.bizkZ7heWC" 2>"/tmp/check_all_args.zh9PzHD2Nu"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -f' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --fds 1>"/tmp/check_all_args.olelYkdCLm" 2>"/tmp/check_all_args.PMWpBcr1Hg"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --fds 1>"/tmp/check_all_args.olelYkdCLm" 2>"/tmp/check_all_args.PMWpBcr1Hg"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --fds 1>"/tmp/check_all_args.olelYkdCLm" 2>"/tmp/check_all_args.PMWpBcr1Hg"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --fds' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -F 1>"/tmp/check_all_args.2IHkYCNPKw" 2>"/tmp/check_all_args.QA0LefO6At"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -F 1>"/tmp/check_all_args.2IHkYCNPKw" 2>"/tmp/check_all_args.QA0LefO6At"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -F 1>"/tmp/check_all_args.2IHkYCNPKw" 2>"/tmp/check_all_args.QA0LefO6At"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -F' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --namespaces 1>"/tmp/check_all_args.vpSGtALX57" 2>"/tmp/check_all_args.m2TB55Fnl2"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --namespaces 1>"/tmp/check_all_args.vpSGtALX57" 2>"/tmp/check_all_args.m2TB55Fnl2"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --namespaces 1>"/tmp/check_all_args.vpSGtALX57" 2>"/tmp/check_all_args.m2TB55Fnl2"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --namespaces' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -g 1>"/tmp/check_all_args.ja6tuMlTVj" 2>"/tmp/check_all_args.EDfpuFxECe"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -g 1>"/tmp/check_all_args.ja6tuMlTVj" 2>"/tmp/check_all_args.EDfpuFxECe"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -g 1>"/tmp/check_all_args.ja6tuMlTVj" 2>"/tmp/check_all_args.EDfpuFxECe"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -g' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --sizeof 1>"/tmp/check_all_args.SJxb7w6sH1" 2>"/tmp/check_all_args.1my7liuaC2"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --sizeof 1>"/tmp/check_all_args.SJxb7w6sH1" 2>"/tmp/check_all_args.1my7liuaC2"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --sizeof 1>"/tmp/check_all_args.SJxb7w6sH1" 2>"/tmp/check_all_args.1my7liuaC2"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --sizeof' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -i 1>"/tmp/check_all_args.EC3uP9wWFt" 2>"/tmp/check_all_args.7Ea20tzadS"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -i 1>"/tmp/check_all_args.EC3uP9wWFt" 2>"/tmp/check_all_args.7Ea20tzadS"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -i 1>"/tmp/check_all_args.EC3uP9wWFt" 2>"/tmp/check_all_args.7Ea20tzadS"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -i' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --misc 1>"/tmp/check_all_args.GW2fomSpft" 2>"/tmp/check_all_args.4MAA2vn9HZ"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --misc 1>"/tmp/check_all_args.GW2fomSpft" 2>"/tmp/check_all_args.4MAA2vn9HZ"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --misc 1>"/tmp/check_all_args.GW2fomSpft" 2>"/tmp/check_all_args.4MAA2vn9HZ"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --misc' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -j 1>"/tmp/check_all_args.UnNB2QXKnE" 2>"/tmp/check_all_args.TJ6SQvPtwe"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -j 1>"/tmp/check_all_args.UnNB2QXKnE" 2>"/tmp/check_all_args.TJ6SQvPtwe"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -j 1>"/tmp/check_all_args.UnNB2QXKnE" 2>"/tmp/check_all_args.TJ6SQvPtwe"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -j' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --uname 1>"/tmp/check_all_args.J9cFmoCXhO" 2>"/tmp/check_all_args.RNNWIwaCtY"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --uname 1>"/tmp/check_all_args.J9cFmoCXhO" 2>"/tmp/check_all_args.RNNWIwaCtY"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --uname 1>"/tmp/check_all_args.J9cFmoCXhO" 2>"/tmp/check_all_args.RNNWIwaCtY"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --uname' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -k 1>"/tmp/check_all_args.YdiCccuRFi" 2>"/tmp/check_all_args.vAG4HYlhHz"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -k 1>"/tmp/check_all_args.YdiCccuRFi" 2>"/tmp/check_all_args.vAG4HYlhHz"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -k 1>"/tmp/check_all_args.YdiCccuRFi" 2>"/tmp/check_all_args.vAG4HYlhHz"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -k' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --clocks 1>"/tmp/check_all_args.n3rogGB8dK" 2>"/tmp/check_all_args.aE7NmIWZeX"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --clocks 1>"/tmp/check_all_args.n3rogGB8dK" 2>"/tmp/check_all_args.aE7NmIWZeX"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --clocks 1>"/tmp/check_all_args.n3rogGB8dK" 2>"/tmp/check_all_args.aE7NmIWZeX"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --clocks' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -l 1>"/tmp/check_all_args.MvIKz7rXJ4" 2>"/tmp/check_all_args.QqjC1FNSNT"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -l 1>"/tmp/check_all_args.MvIKz7rXJ4" 2>"/tmp/check_all_args.QqjC1FNSNT"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -l 1>"/tmp/check_all_args.MvIKz7rXJ4" 2>"/tmp/check_all_args.QqjC1FNSNT"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -l' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --limits 1>"/tmp/check_all_args.Rk5028nW4h" 2>"/tmp/check_all_args.NndY4y5gUo"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --limits 1>"/tmp/check_all_args.Rk5028nW4h" 2>"/tmp/check_all_args.NndY4y5gUo"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --limits 1>"/tmp/check_all_args.Rk5028nW4h" 2>"/tmp/check_all_args.NndY4y5gUo"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --limits' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -L 1>"/tmp/check_all_args.IthMUlETiE" 2>"/tmp/check_all_args.KRsACMRjPp"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -L 1>"/tmp/check_all_args.IthMUlETiE" 2>"/tmp/check_all_args.KRsACMRjPp"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -L 1>"/tmp/check_all_args.IthMUlETiE" 2>"/tmp/check_all_args.KRsACMRjPp"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -L' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --locale 1>"/tmp/check_all_args.9bOQnuln3c" 2>"/tmp/check_all_args.DlI3z37ecN"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --locale 1>"/tmp/check_all_args.9bOQnuln3c" 2>"/tmp/check_all_args.DlI3z37ecN"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --locale 1>"/tmp/check_all_args.9bOQnuln3c" 2>"/tmp/check_all_args.DlI3z37ecN"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --locale' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -m 1>"/tmp/check_all_args.HWoOFBx0HX" 2>"/tmp/check_all_args.GCEvNGKzGb"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -m 1>"/tmp/check_all_args.HWoOFBx0HX" 2>"/tmp/check_all_args.GCEvNGKzGb"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -m 1>"/tmp/check_all_args.HWoOFBx0HX" 2>"/tmp/check_all_args.GCEvNGKzGb"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -m' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --mounts 1>"/tmp/check_all_args.jHYLqzqK26" 2>"/tmp/check_all_args.JDX5SvkKgD"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --mounts 1>"/tmp/check_all_args.jHYLqzqK26" 2>"/tmp/check_all_args.JDX5SvkKgD"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --mounts 1>"/tmp/check_all_args.jHYLqzqK26" 2>"/tmp/check_all_args.JDX5SvkKgD"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --mounts' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -M 1>"/tmp/check_all_args.Qryaro7Hrl" 2>"/tmp/check_all_args.d3NzLnZB6Q"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -M 1>"/tmp/check_all_args.Qryaro7Hrl" 2>"/tmp/check_all_args.d3NzLnZB6Q"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -M 1>"/tmp/check_all_args.Qryaro7Hrl" 2>"/tmp/check_all_args.d3NzLnZB6Q"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -M' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --message-queues 1>"/tmp/check_all_args.CH4DG257Nk" 2>"/tmp/check_all_args.pciSTyWODr"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --message-queues 1>"/tmp/check_all_args.CH4DG257Nk" 2>"/tmp/check_all_args.pciSTyWODr"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --message-queues 1>"/tmp/check_all_args.CH4DG257Nk" 2>"/tmp/check_all_args.pciSTyWODr"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --message-queues' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -n 1>"/tmp/check_all_args.XqSZxB4SMl" 2>"/tmp/check_all_args.mJU2UeuFJq"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -n 1>"/tmp/check_all_args.XqSZxB4SMl" 2>"/tmp/check_all_args.mJU2UeuFJq"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -n 1>"/tmp/check_all_args.XqSZxB4SMl" 2>"/tmp/check_all_args.mJU2UeuFJq"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -n' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --confstr 1>"/tmp/check_all_args.eiy0rRYXGM" 2>"/tmp/check_all_args.lMAiqkItoF"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --confstr 1>"/tmp/check_all_args.eiy0rRYXGM" 2>"/tmp/check_all_args.lMAiqkItoF"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --confstr 1>"/tmp/check_all_args.eiy0rRYXGM" 2>"/tmp/check_all_args.lMAiqkItoF"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --confstr' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -N 1>"/tmp/check_all_args.ns68jtRS4T" 2>"/tmp/check_all_args.uWiNJAY6sH"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -N 1>"/tmp/check_all_args.ns68jtRS4T" 2>"/tmp/check_all_args.uWiNJAY6sH"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -N 1>"/tmp/check_all_args.ns68jtRS4T" 2>"/tmp/check_all_args.uWiNJAY6sH"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -N' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --network 1>"/tmp/check_all_args.Ex9FPXTl56" 2>"/tmp/check_all_args.2qGkjdnyXl"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --network 1>"/tmp/check_all_args.Ex9FPXTl56" 2>"/tmp/check_all_args.2qGkjdnyXl"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --network 1>"/tmp/check_all_args.Ex9FPXTl56" 2>"/tmp/check_all_args.2qGkjdnyXl"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --network' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -o 1>"/tmp/check_all_args.luCRLVAD51" 2>"/tmp/check_all_args.pZ5PaRZsmj"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -o 1>"/tmp/check_all_args.luCRLVAD51" 2>"/tmp/check_all_args.pZ5PaRZsmj"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -o 1>"/tmp/check_all_args.luCRLVAD51" 2>"/tmp/check_all_args.pZ5PaRZsmj"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -o' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --oom 1>"/tmp/check_all_args.XTtjdd6y28" 2>"/tmp/check_all_args.deyBCy2GRr"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --oom 1>"/tmp/check_all_args.XTtjdd6y28" 2>"/tmp/check_all_args.deyBCy2GRr"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --oom 1>"/tmp/check_all_args.XTtjdd6y28" 2>"/tmp/check_all_args.deyBCy2GRr"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --oom' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -p 1>"/tmp/check_all_args.b7dubMViWN" 2>"/tmp/check_all_args.fx3yr1l6r6"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -p 1>"/tmp/check_all_args.b7dubMViWN" 2>"/tmp/check_all_args.fx3yr1l6r6"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -p 1>"/tmp/check_all_args.b7dubMViWN" 2>"/tmp/check_all_args.fx3yr1l6r6"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -p' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --process 1>"/tmp/check_all_args.H0e29d1DSh" 2>"/tmp/check_all_args.H23W2YsVQe"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --process 1>"/tmp/check_all_args.H0e29d1DSh" 2>"/tmp/check_all_args.H23W2YsVQe"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --process 1>"/tmp/check_all_args.H0e29d1DSh" 2>"/tmp/check_all_args.H23W2YsVQe"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --process' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -P 1>"/tmp/check_all_args.2hFqPep8me" 2>"/tmp/check_all_args.cmwI3yXi4e"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -P 1>"/tmp/check_all_args.2hFqPep8me" 2>"/tmp/check_all_args.cmwI3yXi4e"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -P 1>"/tmp/check_all_args.2hFqPep8me" 2>"/tmp/check_all_args.cmwI3yXi4e"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -P' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --platform 1>"/tmp/check_all_args.ETvMFkXJa2" 2>"/tmp/check_all_args.DVCuJE0CzE"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --platform 1>"/tmp/check_all_args.ETvMFkXJa2" 2>"/tmp/check_all_args.DVCuJE0CzE"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --platform 1>"/tmp/check_all_args.ETvMFkXJa2" 2>"/tmp/check_all_args.DVCuJE0CzE"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --platform' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -q 1>"/tmp/check_all_args.e4Lqjke2t6" 2>"/tmp/check_all_args.IuqyWpOYPO"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -q 1>"/tmp/check_all_args.e4Lqjke2t6" 2>"/tmp/check_all_args.IuqyWpOYPO"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -q 1>"/tmp/check_all_args.e4Lqjke2t6" 2>"/tmp/check_all_args.IuqyWpOYPO"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -q' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --time 1>"/tmp/check_all_args.JPSCDR9GJ3" 2>"/tmp/check_all_args.gpgXzoek17"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --time 1>"/tmp/check_all_args.JPSCDR9GJ3" 2>"/tmp/check_all_args.gpgXzoek17"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --time 1>"/tmp/check_all_args.JPSCDR9GJ3" 2>"/tmp/check_all_args.gpgXzoek17"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --time' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -r 1>"/tmp/check_all_args.e8AWxs5Lzu" 2>"/tmp/check_all_args.N3bfmk67JY"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -r 1>"/tmp/check_all_args.e8AWxs5Lzu" 2>"/tmp/check_all_args.N3bfmk67JY"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -r 1>"/tmp/check_all_args.e8AWxs5Lzu" 2>"/tmp/check_all_args.N3bfmk67JY"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -r' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --ranges 1>"/tmp/check_all_args.a1zwaraN2Y" 2>"/tmp/check_all_args.Po3F8m3ZVQ"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --ranges 1>"/tmp/check_all_args.a1zwaraN2Y" 2>"/tmp/check_all_args.Po3F8m3ZVQ"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --ranges 1>"/tmp/check_all_args.a1zwaraN2Y" 2>"/tmp/check_all_args.Po3F8m3ZVQ"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --ranges' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -s 1>"/tmp/check_all_args.dlco8UUw2m" 2>"/tmp/check_all_args.d8iOB6ZlB5"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -s 1>"/tmp/check_all_args.dlco8UUw2m" 2>"/tmp/check_all_args.d8iOB6ZlB5"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -s 1>"/tmp/check_all_args.dlco8UUw2m" 2>"/tmp/check_all_args.d8iOB6ZlB5"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -s' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --signals 1>"/tmp/check_all_args.f4nCPjG9CG" 2>"/tmp/check_all_args.q2kF7p09Iv"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --signals 1>"/tmp/check_all_args.f4nCPjG9CG" 2>"/tmp/check_all_args.q2kF7p09Iv"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --signals 1>"/tmp/check_all_args.f4nCPjG9CG" 2>"/tmp/check_all_args.q2kF7p09Iv"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --signals' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -S 1>"/tmp/check_all_args.ILSl5Jncwn" 2>"/tmp/check_all_args.Nr2tGG9xRd"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -S 1>"/tmp/check_all_args.ILSl5Jncwn" 2>"/tmp/check_all_args.Nr2tGG9xRd"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -S 1>"/tmp/check_all_args.ILSl5Jncwn" 2>"/tmp/check_all_args.Nr2tGG9xRd"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -S' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --shared-memory 1>"/tmp/check_all_args.3y7LIfoF4A" 2>"/tmp/check_all_args.ftQXdlJ1QX"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --shared-memory 1>"/tmp/check_all_args.3y7LIfoF4A" 2>"/tmp/check_all_args.ftQXdlJ1QX"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --shared-memory 1>"/tmp/check_all_args.3y7LIfoF4A" 2>"/tmp/check_all_args.ftQXdlJ1QX"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --shared-memory' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -t 1>"/tmp/check_all_args.pU1InZN4xS" 2>"/tmp/check_all_args.Xsag1nag7Z"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -t 1>"/tmp/check_all_args.pU1InZN4xS" 2>"/tmp/check_all_args.Xsag1nag7Z"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -t 1>"/tmp/check_all_args.pU1InZN4xS" 2>"/tmp/check_all_args.Xsag1nag7Z"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -t' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --tty 1>"/tmp/check_all_args.iSHSFsbQer" 2>"/tmp/check_all_args.PQydNt7y87"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --tty 1>"/tmp/check_all_args.iSHSFsbQer" 2>"/tmp/check_all_args.PQydNt7y87"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --tty 1>"/tmp/check_all_args.iSHSFsbQer" 2>"/tmp/check_all_args.PQydNt7y87"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --tty' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -T 1>"/tmp/check_all_args.fsDPsNTVKX" 2>"/tmp/check_all_args.GWibcRnBbk"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -T 1>"/tmp/check_all_args.fsDPsNTVKX" 2>"/tmp/check_all_args.GWibcRnBbk"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -T 1>"/tmp/check_all_args.fsDPsNTVKX" 2>"/tmp/check_all_args.GWibcRnBbk"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -T' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --threads 1>"/tmp/check_all_args.SXZtK8FnQK" 2>"/tmp/check_all_args.IRRkMGYNZ3"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --threads 1>"/tmp/check_all_args.SXZtK8FnQK" 2>"/tmp/check_all_args.IRRkMGYNZ3"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --threads 1>"/tmp/check_all_args.SXZtK8FnQK" 2>"/tmp/check_all_args.IRRkMGYNZ3"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --threads' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -u 1>"/tmp/check_all_args.UuhT0BI85t" 2>"/tmp/check_all_args.25e6ofYzHx"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -u 1>"/tmp/check_all_args.UuhT0BI85t" 2>"/tmp/check_all_args.25e6ofYzHx"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -u 1>"/tmp/check_all_args.UuhT0BI85t" 2>"/tmp/check_all_args.25e6ofYzHx"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -u' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --stat 1>"/tmp/check_all_args.evdRAMgDQV" 2>"/tmp/check_all_args.rMaStCdXQl"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --stat 1>"/tmp/check_all_args.evdRAMgDQV" 2>"/tmp/check_all_args.rMaStCdXQl"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --stat 1>"/tmp/check_all_args.evdRAMgDQV" 2>"/tmp/check_all_args.rMaStCdXQl"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --stat' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -U 1>"/tmp/check_all_args.kUe5NYvREs" 2>"/tmp/check_all_args.7RtZuyg7RI"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -U 1>"/tmp/check_all_args.kUe5NYvREs" 2>"/tmp/check_all_args.7RtZuyg7RI"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -U 1>"/tmp/check_all_args.kUe5NYvREs" 2>"/tmp/check_all_args.7RtZuyg7RI"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -U' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --rusage 1>"/tmp/check_all_args.GmgNuWq8iX" 2>"/tmp/check_all_args.MuhaTcxwOL"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --rusage 1>"/tmp/check_all_args.GmgNuWq8iX" 2>"/tmp/check_all_args.MuhaTcxwOL"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --rusage 1>"/tmp/check_all_args.GmgNuWq8iX" 2>"/tmp/check_all_args.MuhaTcxwOL"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --rusage' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -v 1>"/tmp/check_all_args.S1S6EWfKdw" 2>"/tmp/check_all_args.PxB5aW6KE3"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -v 1>"/tmp/check_all_args.S1S6EWfKdw" 2>"/tmp/check_all_args.PxB5aW6KE3"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -v 1>"/tmp/check_all_args.S1S6EWfKdw" 2>"/tmp/check_all_args.PxB5aW6KE3"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -v' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --version 1>"/tmp/check_all_args.Lycjkl6fkv" 2>"/tmp/check_all_args.NTxjScUpCu"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --version 1>"/tmp/check_all_args.Lycjkl6fkv" 2>"/tmp/check_all_args.NTxjScUpCu"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --version 1>"/tmp/check_all_args.Lycjkl6fkv" 2>"/tmp/check_all_args.NTxjScUpCu"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --version' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -w 1>"/tmp/check_all_args.FR8AtyiaU5" 2>"/tmp/check_all_args.weRefJgZ2n"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -w 1>"/tmp/check_all_args.FR8AtyiaU5" 2>"/tmp/check_all_args.weRefJgZ2n"' 307s WARNING: 307s WARNING: 307s WARNING: Found extra capability procenv is not aware of (number 40) 307s WARNING: 307s WARNING: Note that this warning will appear if procenv is built on a 307s WARNING: system which is running a newer kernel than the 307s WARNING: development environment assumes (for example if built in a 307s WARNING: chroot for a back-level release of ubuntu) 307s WARNING: 307s WARNING: Please check for a newer version of procenv, 307s WARNING: build on a newer system, or raise a bug at: 307s WARNING: 307s WARNING: https://github.com/jamesodhunt/procenv 307s WARNING: 307s WARNING: 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -w 1>"/tmp/check_all_args.FR8AtyiaU5" 2>"/tmp/check_all_args.weRefJgZ2n"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -w' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --capabilities 1>"/tmp/check_all_args.V6bPGvR0vm" 2>"/tmp/check_all_args.hdfHrvYea4"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --capabilities 1>"/tmp/check_all_args.V6bPGvR0vm" 2>"/tmp/check_all_args.hdfHrvYea4"' 307s WARNING: 307s WARNING: 307s WARNING: Found extra capability procenv is not aware of (number 40) 307s WARNING: 307s WARNING: Note that this warning will appear if procenv is built on a 307s WARNING: system which is running a newer kernel than the 307s WARNING: development environment assumes (for example if built in a 307s WARNING: chroot for a back-level release of ubuntu) 307s WARNING: 307s WARNING: Please check for a newer version of procenv, 307s WARNING: build on a newer system, or raise a bug at: 307s WARNING: 307s WARNING: https://github.com/jamesodhunt/procenv 307s WARNING: 307s WARNING: 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --capabilities 1>"/tmp/check_all_args.V6bPGvR0vm" 2>"/tmp/check_all_args.hdfHrvYea4"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --capabilities' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -x 1>"/tmp/check_all_args.19QWechUlZ" 2>"/tmp/check_all_args.oj0nkA7EQm"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -x 1>"/tmp/check_all_args.19QWechUlZ" 2>"/tmp/check_all_args.oj0nkA7EQm"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -x 1>"/tmp/check_all_args.19QWechUlZ" 2>"/tmp/check_all_args.oj0nkA7EQm"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -x' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --pathconf 1>"/tmp/check_all_args.zsxmaldSaM" 2>"/tmp/check_all_args.Vgmve0NVwN"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --pathconf 1>"/tmp/check_all_args.zsxmaldSaM" 2>"/tmp/check_all_args.Vgmve0NVwN"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --pathconf 1>"/tmp/check_all_args.zsxmaldSaM" 2>"/tmp/check_all_args.Vgmve0NVwN"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --pathconf' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -y 1>"/tmp/check_all_args.YHoqwuElf8" 2>"/tmp/check_all_args.vYMVG0JudE"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -y 1>"/tmp/check_all_args.YHoqwuElf8" 2>"/tmp/check_all_args.vYMVG0JudE"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -y 1>"/tmp/check_all_args.YHoqwuElf8" 2>"/tmp/check_all_args.vYMVG0JudE"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -y' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --sysconf 1>"/tmp/check_all_args.BEvMX8BxUC" 2>"/tmp/check_all_args.8xjHlYRPke"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --sysconf 1>"/tmp/check_all_args.BEvMX8BxUC" 2>"/tmp/check_all_args.8xjHlYRPke"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --sysconf 1>"/tmp/check_all_args.BEvMX8BxUC" 2>"/tmp/check_all_args.8xjHlYRPke"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --sysconf' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -Y 1>"/tmp/check_all_args.oVe2DJ1JZm" 2>"/tmp/check_all_args.hQBqrJO5ur"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -Y 1>"/tmp/check_all_args.oVe2DJ1JZm" 2>"/tmp/check_all_args.hQBqrJO5ur"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -Y 1>"/tmp/check_all_args.oVe2DJ1JZm" 2>"/tmp/check_all_args.hQBqrJO5ur"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -Y' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --memory 1>"/tmp/check_all_args.sjQaVUYi94" 2>"/tmp/check_all_args.B6nPG8dyKN"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --memory 1>"/tmp/check_all_args.sjQaVUYi94" 2>"/tmp/check_all_args.B6nPG8dyKN"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --memory 1>"/tmp/check_all_args.sjQaVUYi94" 2>"/tmp/check_all_args.B6nPG8dyKN"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --memory' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv -z 1>"/tmp/check_all_args.BAmDtfnd9u" 2>"/tmp/check_all_args.8pSbyBAaW1"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text -z 1>"/tmp/check_all_args.BAmDtfnd9u" 2>"/tmp/check_all_args.8pSbyBAaW1"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json -z 1>"/tmp/check_all_args.BAmDtfnd9u" 2>"/tmp/check_all_args.8pSbyBAaW1"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml -z' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --timezone 1>"/tmp/check_all_args.AlYv6Grrmz" 2>"/tmp/check_all_args.3NXGqFRKZ9"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=text --timezone 1>"/tmp/check_all_args.AlYv6Grrmz" 2>"/tmp/check_all_args.3NXGqFRKZ9"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=json --timezone 1>"/tmp/check_all_args.AlYv6Grrmz" 2>"/tmp/check_all_args.3NXGqFRKZ9"' 307s INFO:LANG=C:LC_ALL=C: Running '../src/procenv --format=xml --timezone' 307s INFO:LANG=C:LC_ALL=C: Ensure ../src/procenv runs with no errors 307s INFO:LANG=C:LC_ALL=C: Ensuring output is sorted by section 307s INFO:LANG=C:LC_ALL=C: Ensure --file= works 307s INFO:LANG=C:LC_ALL=C: Ensure running multiple '--file= --version' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--file-append --file= --version' works 307s INFO:LANG=C:LC_ALL=C: Ensure --output=stdout works 307s INFO:LANG=C:LC_ALL=C: Ensure --output=stderr works 307s INFO:LANG=C:LC_ALL=C: Ensure --exec works (with no previous arguments) 307s INFO:LANG=C:LC_ALL=C: Ensure '--version --exec' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--exec' can exec ../src/procenv 307s INFO:LANG=C:LC_ALL=C: Ensure 'PROCENV_EXEC' and 'PROCENV_FILE' variables work 307s INFO:LANG=C:LC_ALL=C: Ensure '--format=text' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--format=crumb' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--indent-char=.' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--indent-char=;' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--indent-char=12' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--indent-char=123' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--indent-char=1234' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--separator=.' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--separator=;' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--separator=12' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--separator=123' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--separator=1234' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--crumb-separator=.' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--crumb-separator=;' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--crumb-separator=12' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--crumb-separator=123' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--crumb-separator=1234' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--format=xml' works 307s INFO:LANG=C:LC_ALL=C: Ensure '--format=json' works 307s INFO:LANG=C:LC_ALL=C: Ensure non-display option ('--crumb-separator=.') disallowed after display option ('--meta') 307s INFO:LANG=C:LC_ALL=C: Ensure non-display option ('--file=/tmp/foo') disallowed after display option ('--meta') 307s INFO:LANG=C:LC_ALL=C: Ensure non-display option ('--format=crumb') disallowed after display option ('--meta') 307s INFO:LANG=C:LC_ALL=C: Ensure non-display option ('--indent=7') disallowed after display option ('--meta') 307s INFO:LANG=C:LC_ALL=C: Ensure non-display option ('--indent-char=X') disallowed after display option ('--meta') 307s INFO:LANG=C:LC_ALL=C: Ensure non-display option ('--separator=X') disallowed after display option ('--meta') 307s INFO:LANG=C:LC_ALL=C: Ensure an empty environment is tolerated 307s INFO:LANG=C:LC_ALL=C: Not testing with locale language C.UTF-8 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running procenv version 0.51 tests for language 'POSIX' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--help' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure all documented options produce output 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -a 1>"/tmp/check_all_args.1HC3Y32Bk2" 2>"/tmp/check_all_args.vQPCPTPKcb"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -a 1>"/tmp/check_all_args.1HC3Y32Bk2" 2>"/tmp/check_all_args.vQPCPTPKcb"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -a 1>"/tmp/check_all_args.1HC3Y32Bk2" 2>"/tmp/check_all_args.vQPCPTPKcb"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -a' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --meta 1>"/tmp/check_all_args.0IUMNXQQGr" 2>"/tmp/check_all_args.iCTIAgn1Or"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --meta 1>"/tmp/check_all_args.0IUMNXQQGr" 2>"/tmp/check_all_args.iCTIAgn1Or"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --meta 1>"/tmp/check_all_args.0IUMNXQQGr" 2>"/tmp/check_all_args.iCTIAgn1Or"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --meta' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -A 1>"/tmp/check_all_args.KapFk0bHt3" 2>"/tmp/check_all_args.YfDAZqQDOv"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -A 1>"/tmp/check_all_args.KapFk0bHt3" 2>"/tmp/check_all_args.YfDAZqQDOv"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -A 1>"/tmp/check_all_args.KapFk0bHt3" 2>"/tmp/check_all_args.YfDAZqQDOv"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -A' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --arguments 1>"/tmp/check_all_args.O3sRGvRCP8" 2>"/tmp/check_all_args.y7WQPgDLA6"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --arguments 1>"/tmp/check_all_args.O3sRGvRCP8" 2>"/tmp/check_all_args.y7WQPgDLA6"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --arguments 1>"/tmp/check_all_args.O3sRGvRCP8" 2>"/tmp/check_all_args.y7WQPgDLA6"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --arguments' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -b 1>"/tmp/check_all_args.lWdtuMOeIv" 2>"/tmp/check_all_args.gQGt80575Z"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -b 1>"/tmp/check_all_args.lWdtuMOeIv" 2>"/tmp/check_all_args.gQGt80575Z"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -b 1>"/tmp/check_all_args.lWdtuMOeIv" 2>"/tmp/check_all_args.gQGt80575Z"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -b' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --libs 1>"/tmp/check_all_args.Syj3yWZM1V" 2>"/tmp/check_all_args.7PUaonHCJ9"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --libs 1>"/tmp/check_all_args.Syj3yWZM1V" 2>"/tmp/check_all_args.7PUaonHCJ9"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --libs 1>"/tmp/check_all_args.Syj3yWZM1V" 2>"/tmp/check_all_args.7PUaonHCJ9"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --libs' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -B 1>"/tmp/check_all_args.n4Rb7XuBYW" 2>"/tmp/check_all_args.AiDbO2uQxS"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -B 1>"/tmp/check_all_args.n4Rb7XuBYW" 2>"/tmp/check_all_args.AiDbO2uQxS"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -B 1>"/tmp/check_all_args.n4Rb7XuBYW" 2>"/tmp/check_all_args.AiDbO2uQxS"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -B' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --libc 1>"/tmp/check_all_args.Dvxf1PByF6" 2>"/tmp/check_all_args.IsNLzeoje4"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --libc 1>"/tmp/check_all_args.Dvxf1PByF6" 2>"/tmp/check_all_args.IsNLzeoje4"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --libc 1>"/tmp/check_all_args.Dvxf1PByF6" 2>"/tmp/check_all_args.IsNLzeoje4"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --libc' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -c 1>"/tmp/check_all_args.NwNTSp4VCl" 2>"/tmp/check_all_args.quHc7w6b4p"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -c 1>"/tmp/check_all_args.NwNTSp4VCl" 2>"/tmp/check_all_args.quHc7w6b4p"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -c 1>"/tmp/check_all_args.NwNTSp4VCl" 2>"/tmp/check_all_args.quHc7w6b4p"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -c' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --cgroups 1>"/tmp/check_all_args.IE3aU2laLk" 2>"/tmp/check_all_args.MD5S8uM6Yh"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --cgroups 1>"/tmp/check_all_args.IE3aU2laLk" 2>"/tmp/check_all_args.MD5S8uM6Yh"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --cgroups 1>"/tmp/check_all_args.IE3aU2laLk" 2>"/tmp/check_all_args.MD5S8uM6Yh"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --cgroups' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -C 1>"/tmp/check_all_args.am1BGJgQwf" 2>"/tmp/check_all_args.U9g1m0UKBE"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -C 1>"/tmp/check_all_args.am1BGJgQwf" 2>"/tmp/check_all_args.U9g1m0UKBE"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -C 1>"/tmp/check_all_args.am1BGJgQwf" 2>"/tmp/check_all_args.U9g1m0UKBE"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -C' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --cpu 1>"/tmp/check_all_args.8f1J0TyxkO" 2>"/tmp/check_all_args.gTAymJUCwV"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --cpu 1>"/tmp/check_all_args.8f1J0TyxkO" 2>"/tmp/check_all_args.gTAymJUCwV"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --cpu 1>"/tmp/check_all_args.8f1J0TyxkO" 2>"/tmp/check_all_args.gTAymJUCwV"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --cpu' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -d 1>"/tmp/check_all_args.HANvSKJ86D" 2>"/tmp/check_all_args.HNbhdHDEoa"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -d 1>"/tmp/check_all_args.HANvSKJ86D" 2>"/tmp/check_all_args.HNbhdHDEoa"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -d 1>"/tmp/check_all_args.HANvSKJ86D" 2>"/tmp/check_all_args.HNbhdHDEoa"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -d' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --compiler 1>"/tmp/check_all_args.W5EfklfmZi" 2>"/tmp/check_all_args.4E46jkfCax"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --compiler 1>"/tmp/check_all_args.W5EfklfmZi" 2>"/tmp/check_all_args.4E46jkfCax"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --compiler 1>"/tmp/check_all_args.W5EfklfmZi" 2>"/tmp/check_all_args.4E46jkfCax"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --compiler' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -e 1>"/tmp/check_all_args.6N3giE90nE" 2>"/tmp/check_all_args.3Xsl2fsxAn"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -e 1>"/tmp/check_all_args.6N3giE90nE" 2>"/tmp/check_all_args.3Xsl2fsxAn"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -e 1>"/tmp/check_all_args.6N3giE90nE" 2>"/tmp/check_all_args.3Xsl2fsxAn"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -e' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --environment 1>"/tmp/check_all_args.f2tOuA66UO" 2>"/tmp/check_all_args.hPnsys2DsT"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --environment 1>"/tmp/check_all_args.f2tOuA66UO" 2>"/tmp/check_all_args.hPnsys2DsT"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --environment 1>"/tmp/check_all_args.f2tOuA66UO" 2>"/tmp/check_all_args.hPnsys2DsT"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --environment' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -E 1>"/tmp/check_all_args.zIjo1u5vXO" 2>"/tmp/check_all_args.nNHo7SJW97"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -E 1>"/tmp/check_all_args.zIjo1u5vXO" 2>"/tmp/check_all_args.nNHo7SJW97"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -E 1>"/tmp/check_all_args.zIjo1u5vXO" 2>"/tmp/check_all_args.nNHo7SJW97"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -E' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --semaphores 1>"/tmp/check_all_args.2HE4ibMKiK" 2>"/tmp/check_all_args.hYkoyiy6Rg"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --semaphores 1>"/tmp/check_all_args.2HE4ibMKiK" 2>"/tmp/check_all_args.hYkoyiy6Rg"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --semaphores 1>"/tmp/check_all_args.2HE4ibMKiK" 2>"/tmp/check_all_args.hYkoyiy6Rg"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --semaphores' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -f 1>"/tmp/check_all_args.UGPxw1FN25" 2>"/tmp/check_all_args.AeZE3k0h5k"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -f 1>"/tmp/check_all_args.UGPxw1FN25" 2>"/tmp/check_all_args.AeZE3k0h5k"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -f 1>"/tmp/check_all_args.UGPxw1FN25" 2>"/tmp/check_all_args.AeZE3k0h5k"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -f' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --fds 1>"/tmp/check_all_args.vncbA1lWYb" 2>"/tmp/check_all_args.xzluDSkf4c"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --fds 1>"/tmp/check_all_args.vncbA1lWYb" 2>"/tmp/check_all_args.xzluDSkf4c"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --fds 1>"/tmp/check_all_args.vncbA1lWYb" 2>"/tmp/check_all_args.xzluDSkf4c"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --fds' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -F 1>"/tmp/check_all_args.5zPNt4LFAa" 2>"/tmp/check_all_args.DTeF4l0Ix7"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -F 1>"/tmp/check_all_args.5zPNt4LFAa" 2>"/tmp/check_all_args.DTeF4l0Ix7"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -F 1>"/tmp/check_all_args.5zPNt4LFAa" 2>"/tmp/check_all_args.DTeF4l0Ix7"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -F' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --namespaces 1>"/tmp/check_all_args.AEHUBkGIao" 2>"/tmp/check_all_args.8IjuUHRWRS"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --namespaces 1>"/tmp/check_all_args.AEHUBkGIao" 2>"/tmp/check_all_args.8IjuUHRWRS"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --namespaces 1>"/tmp/check_all_args.AEHUBkGIao" 2>"/tmp/check_all_args.8IjuUHRWRS"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --namespaces' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -g 1>"/tmp/check_all_args.3tg0VzupGa" 2>"/tmp/check_all_args.aEyKS0JuOR"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -g 1>"/tmp/check_all_args.3tg0VzupGa" 2>"/tmp/check_all_args.aEyKS0JuOR"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -g 1>"/tmp/check_all_args.3tg0VzupGa" 2>"/tmp/check_all_args.aEyKS0JuOR"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -g' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --sizeof 1>"/tmp/check_all_args.cXomxRRm4F" 2>"/tmp/check_all_args.BajlX7dJU1"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --sizeof 1>"/tmp/check_all_args.cXomxRRm4F" 2>"/tmp/check_all_args.BajlX7dJU1"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --sizeof 1>"/tmp/check_all_args.cXomxRRm4F" 2>"/tmp/check_all_args.BajlX7dJU1"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --sizeof' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -i 1>"/tmp/check_all_args.y4Ob5OrvTn" 2>"/tmp/check_all_args.GAk8Nmyfz5"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -i 1>"/tmp/check_all_args.y4Ob5OrvTn" 2>"/tmp/check_all_args.GAk8Nmyfz5"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -i 1>"/tmp/check_all_args.y4Ob5OrvTn" 2>"/tmp/check_all_args.GAk8Nmyfz5"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -i' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --misc 1>"/tmp/check_all_args.b0Rxq8cJl3" 2>"/tmp/check_all_args.kWxP06xlcv"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --misc 1>"/tmp/check_all_args.b0Rxq8cJl3" 2>"/tmp/check_all_args.kWxP06xlcv"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --misc 1>"/tmp/check_all_args.b0Rxq8cJl3" 2>"/tmp/check_all_args.kWxP06xlcv"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --misc' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -j 1>"/tmp/check_all_args.6UjRR5pret" 2>"/tmp/check_all_args.8jDYzTtKsz"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -j 1>"/tmp/check_all_args.6UjRR5pret" 2>"/tmp/check_all_args.8jDYzTtKsz"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -j 1>"/tmp/check_all_args.6UjRR5pret" 2>"/tmp/check_all_args.8jDYzTtKsz"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -j' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --uname 1>"/tmp/check_all_args.7a3TC9MJFQ" 2>"/tmp/check_all_args.aT8FgGvEIt"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --uname 1>"/tmp/check_all_args.7a3TC9MJFQ" 2>"/tmp/check_all_args.aT8FgGvEIt"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --uname 1>"/tmp/check_all_args.7a3TC9MJFQ" 2>"/tmp/check_all_args.aT8FgGvEIt"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --uname' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -k 1>"/tmp/check_all_args.5DjTyMwjzB" 2>"/tmp/check_all_args.7VZYRYbR60"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -k 1>"/tmp/check_all_args.5DjTyMwjzB" 2>"/tmp/check_all_args.7VZYRYbR60"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -k 1>"/tmp/check_all_args.5DjTyMwjzB" 2>"/tmp/check_all_args.7VZYRYbR60"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -k' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --clocks 1>"/tmp/check_all_args.7Jd7VpxFKL" 2>"/tmp/check_all_args.JmkYbgZX9N"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --clocks 1>"/tmp/check_all_args.7Jd7VpxFKL" 2>"/tmp/check_all_args.JmkYbgZX9N"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --clocks 1>"/tmp/check_all_args.7Jd7VpxFKL" 2>"/tmp/check_all_args.JmkYbgZX9N"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --clocks' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -l 1>"/tmp/check_all_args.yncPF7uGA6" 2>"/tmp/check_all_args.SvsLALWBDE"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -l 1>"/tmp/check_all_args.yncPF7uGA6" 2>"/tmp/check_all_args.SvsLALWBDE"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -l 1>"/tmp/check_all_args.yncPF7uGA6" 2>"/tmp/check_all_args.SvsLALWBDE"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -l' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --limits 1>"/tmp/check_all_args.mu2Vk7Aiay" 2>"/tmp/check_all_args.Jdzn6yYhSb"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --limits 1>"/tmp/check_all_args.mu2Vk7Aiay" 2>"/tmp/check_all_args.Jdzn6yYhSb"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --limits 1>"/tmp/check_all_args.mu2Vk7Aiay" 2>"/tmp/check_all_args.Jdzn6yYhSb"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --limits' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -L 1>"/tmp/check_all_args.25dIgg3w8n" 2>"/tmp/check_all_args.UCIDLTnwsw"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -L 1>"/tmp/check_all_args.25dIgg3w8n" 2>"/tmp/check_all_args.UCIDLTnwsw"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -L 1>"/tmp/check_all_args.25dIgg3w8n" 2>"/tmp/check_all_args.UCIDLTnwsw"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -L' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --locale 1>"/tmp/check_all_args.OX5AcinD59" 2>"/tmp/check_all_args.LOY6G2bdsx"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --locale 1>"/tmp/check_all_args.OX5AcinD59" 2>"/tmp/check_all_args.LOY6G2bdsx"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --locale 1>"/tmp/check_all_args.OX5AcinD59" 2>"/tmp/check_all_args.LOY6G2bdsx"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --locale' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -m 1>"/tmp/check_all_args.Cn03FbEiJr" 2>"/tmp/check_all_args.VaM9862xJo"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -m 1>"/tmp/check_all_args.Cn03FbEiJr" 2>"/tmp/check_all_args.VaM9862xJo"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -m 1>"/tmp/check_all_args.Cn03FbEiJr" 2>"/tmp/check_all_args.VaM9862xJo"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -m' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --mounts 1>"/tmp/check_all_args.X7hNfPGG8U" 2>"/tmp/check_all_args.AnrXV57MWV"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --mounts 1>"/tmp/check_all_args.X7hNfPGG8U" 2>"/tmp/check_all_args.AnrXV57MWV"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --mounts 1>"/tmp/check_all_args.X7hNfPGG8U" 2>"/tmp/check_all_args.AnrXV57MWV"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --mounts' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -M 1>"/tmp/check_all_args.yhPRahmw8i" 2>"/tmp/check_all_args.804rFbao3A"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -M 1>"/tmp/check_all_args.yhPRahmw8i" 2>"/tmp/check_all_args.804rFbao3A"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -M 1>"/tmp/check_all_args.yhPRahmw8i" 2>"/tmp/check_all_args.804rFbao3A"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -M' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --message-queues 1>"/tmp/check_all_args.eLUrVrLsdM" 2>"/tmp/check_all_args.SYUf9Onq3m"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --message-queues 1>"/tmp/check_all_args.eLUrVrLsdM" 2>"/tmp/check_all_args.SYUf9Onq3m"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --message-queues 1>"/tmp/check_all_args.eLUrVrLsdM" 2>"/tmp/check_all_args.SYUf9Onq3m"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --message-queues' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -n 1>"/tmp/check_all_args.J1thA28jyo" 2>"/tmp/check_all_args.JK9WZOmQym"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -n 1>"/tmp/check_all_args.J1thA28jyo" 2>"/tmp/check_all_args.JK9WZOmQym"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -n 1>"/tmp/check_all_args.J1thA28jyo" 2>"/tmp/check_all_args.JK9WZOmQym"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -n' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --confstr 1>"/tmp/check_all_args.JpV79zNvy0" 2>"/tmp/check_all_args.GiKw4SKI5i"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --confstr 1>"/tmp/check_all_args.JpV79zNvy0" 2>"/tmp/check_all_args.GiKw4SKI5i"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --confstr 1>"/tmp/check_all_args.JpV79zNvy0" 2>"/tmp/check_all_args.GiKw4SKI5i"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --confstr' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -N 1>"/tmp/check_all_args.f3Acn1wyOg" 2>"/tmp/check_all_args.IrCo3QZqVU"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -N 1>"/tmp/check_all_args.f3Acn1wyOg" 2>"/tmp/check_all_args.IrCo3QZqVU"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -N 1>"/tmp/check_all_args.f3Acn1wyOg" 2>"/tmp/check_all_args.IrCo3QZqVU"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -N' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --network 1>"/tmp/check_all_args.oZViqnIXJ2" 2>"/tmp/check_all_args.7QMV966ATM"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --network 1>"/tmp/check_all_args.oZViqnIXJ2" 2>"/tmp/check_all_args.7QMV966ATM"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --network 1>"/tmp/check_all_args.oZViqnIXJ2" 2>"/tmp/check_all_args.7QMV966ATM"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --network' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -o 1>"/tmp/check_all_args.iYsYUW65dP" 2>"/tmp/check_all_args.bk2KW8Fy8L"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -o 1>"/tmp/check_all_args.iYsYUW65dP" 2>"/tmp/check_all_args.bk2KW8Fy8L"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -o 1>"/tmp/check_all_args.iYsYUW65dP" 2>"/tmp/check_all_args.bk2KW8Fy8L"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -o' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --oom 1>"/tmp/check_all_args.e5Q2VRx8rR" 2>"/tmp/check_all_args.ZiN5tgB5al"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --oom 1>"/tmp/check_all_args.e5Q2VRx8rR" 2>"/tmp/check_all_args.ZiN5tgB5al"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --oom 1>"/tmp/check_all_args.e5Q2VRx8rR" 2>"/tmp/check_all_args.ZiN5tgB5al"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --oom' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -p 1>"/tmp/check_all_args.sYNT31JlnO" 2>"/tmp/check_all_args.tiPvazmKyz"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -p 1>"/tmp/check_all_args.sYNT31JlnO" 2>"/tmp/check_all_args.tiPvazmKyz"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -p 1>"/tmp/check_all_args.sYNT31JlnO" 2>"/tmp/check_all_args.tiPvazmKyz"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -p' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --process 1>"/tmp/check_all_args.WScDLZz411" 2>"/tmp/check_all_args.M1wiCBMlC5"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --process 1>"/tmp/check_all_args.WScDLZz411" 2>"/tmp/check_all_args.M1wiCBMlC5"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --process 1>"/tmp/check_all_args.WScDLZz411" 2>"/tmp/check_all_args.M1wiCBMlC5"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --process' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -P 1>"/tmp/check_all_args.uqMn3RkX00" 2>"/tmp/check_all_args.E0elvoz2RF"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -P 1>"/tmp/check_all_args.uqMn3RkX00" 2>"/tmp/check_all_args.E0elvoz2RF"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -P 1>"/tmp/check_all_args.uqMn3RkX00" 2>"/tmp/check_all_args.E0elvoz2RF"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -P' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --platform 1>"/tmp/check_all_args.73pBOthJex" 2>"/tmp/check_all_args.WnfIDNHQr7"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --platform 1>"/tmp/check_all_args.73pBOthJex" 2>"/tmp/check_all_args.WnfIDNHQr7"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --platform 1>"/tmp/check_all_args.73pBOthJex" 2>"/tmp/check_all_args.WnfIDNHQr7"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --platform' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -q 1>"/tmp/check_all_args.pOpsISficB" 2>"/tmp/check_all_args.54kurbibM2"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -q 1>"/tmp/check_all_args.pOpsISficB" 2>"/tmp/check_all_args.54kurbibM2"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -q 1>"/tmp/check_all_args.pOpsISficB" 2>"/tmp/check_all_args.54kurbibM2"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -q' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --time 1>"/tmp/check_all_args.TTwrnbN7VA" 2>"/tmp/check_all_args.Q7qUyegfwb"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --time 1>"/tmp/check_all_args.TTwrnbN7VA" 2>"/tmp/check_all_args.Q7qUyegfwb"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --time 1>"/tmp/check_all_args.TTwrnbN7VA" 2>"/tmp/check_all_args.Q7qUyegfwb"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --time' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -r 1>"/tmp/check_all_args.qKVY8fbmNB" 2>"/tmp/check_all_args.qExHxdb1Py"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -r 1>"/tmp/check_all_args.qKVY8fbmNB" 2>"/tmp/check_all_args.qExHxdb1Py"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -r 1>"/tmp/check_all_args.qKVY8fbmNB" 2>"/tmp/check_all_args.qExHxdb1Py"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -r' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --ranges 1>"/tmp/check_all_args.JdeKhJQLyw" 2>"/tmp/check_all_args.D3EYxy8lKr"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --ranges 1>"/tmp/check_all_args.JdeKhJQLyw" 2>"/tmp/check_all_args.D3EYxy8lKr"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --ranges 1>"/tmp/check_all_args.JdeKhJQLyw" 2>"/tmp/check_all_args.D3EYxy8lKr"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --ranges' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -s 1>"/tmp/check_all_args.EHJ3FyzJAn" 2>"/tmp/check_all_args.ELEAqZglzL"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -s 1>"/tmp/check_all_args.EHJ3FyzJAn" 2>"/tmp/check_all_args.ELEAqZglzL"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -s 1>"/tmp/check_all_args.EHJ3FyzJAn" 2>"/tmp/check_all_args.ELEAqZglzL"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -s' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --signals 1>"/tmp/check_all_args.elNZDhWsJK" 2>"/tmp/check_all_args.Wjv4axKl5L"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --signals 1>"/tmp/check_all_args.elNZDhWsJK" 2>"/tmp/check_all_args.Wjv4axKl5L"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --signals 1>"/tmp/check_all_args.elNZDhWsJK" 2>"/tmp/check_all_args.Wjv4axKl5L"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --signals' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -S 1>"/tmp/check_all_args.WiBCFP5tfh" 2>"/tmp/check_all_args.7YI2hgyYuT"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -S 1>"/tmp/check_all_args.WiBCFP5tfh" 2>"/tmp/check_all_args.7YI2hgyYuT"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -S 1>"/tmp/check_all_args.WiBCFP5tfh" 2>"/tmp/check_all_args.7YI2hgyYuT"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -S' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --shared-memory 1>"/tmp/check_all_args.wO5NHjqNr6" 2>"/tmp/check_all_args.oTeSA3wJ9V"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --shared-memory 1>"/tmp/check_all_args.wO5NHjqNr6" 2>"/tmp/check_all_args.oTeSA3wJ9V"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --shared-memory 1>"/tmp/check_all_args.wO5NHjqNr6" 2>"/tmp/check_all_args.oTeSA3wJ9V"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --shared-memory' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -t 1>"/tmp/check_all_args.iMWJqSBFfH" 2>"/tmp/check_all_args.UU7R1NOGss"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -t 1>"/tmp/check_all_args.iMWJqSBFfH" 2>"/tmp/check_all_args.UU7R1NOGss"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -t 1>"/tmp/check_all_args.iMWJqSBFfH" 2>"/tmp/check_all_args.UU7R1NOGss"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -t' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --tty 1>"/tmp/check_all_args.xIofSwPfmW" 2>"/tmp/check_all_args.JrdTDc88j6"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --tty 1>"/tmp/check_all_args.xIofSwPfmW" 2>"/tmp/check_all_args.JrdTDc88j6"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --tty 1>"/tmp/check_all_args.xIofSwPfmW" 2>"/tmp/check_all_args.JrdTDc88j6"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --tty' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -T 1>"/tmp/check_all_args.wXawTfOR5B" 2>"/tmp/check_all_args.OoDOYRpZKc"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -T 1>"/tmp/check_all_args.wXawTfOR5B" 2>"/tmp/check_all_args.OoDOYRpZKc"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -T 1>"/tmp/check_all_args.wXawTfOR5B" 2>"/tmp/check_all_args.OoDOYRpZKc"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -T' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --threads 1>"/tmp/check_all_args.Up4uPTELBL" 2>"/tmp/check_all_args.jQB53R48H3"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --threads 1>"/tmp/check_all_args.Up4uPTELBL" 2>"/tmp/check_all_args.jQB53R48H3"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --threads 1>"/tmp/check_all_args.Up4uPTELBL" 2>"/tmp/check_all_args.jQB53R48H3"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --threads' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -u 1>"/tmp/check_all_args.oyD9tp5xXR" 2>"/tmp/check_all_args.tu8ZuRMzj2"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -u 1>"/tmp/check_all_args.oyD9tp5xXR" 2>"/tmp/check_all_args.tu8ZuRMzj2"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -u 1>"/tmp/check_all_args.oyD9tp5xXR" 2>"/tmp/check_all_args.tu8ZuRMzj2"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -u' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --stat 1>"/tmp/check_all_args.VeR2V4xQSb" 2>"/tmp/check_all_args.fRfmVhw1WN"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --stat 1>"/tmp/check_all_args.VeR2V4xQSb" 2>"/tmp/check_all_args.fRfmVhw1WN"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --stat 1>"/tmp/check_all_args.VeR2V4xQSb" 2>"/tmp/check_all_args.fRfmVhw1WN"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --stat' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -U 1>"/tmp/check_all_args.hc2mXfSk0X" 2>"/tmp/check_all_args.rF6NvKCL0O"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -U 1>"/tmp/check_all_args.hc2mXfSk0X" 2>"/tmp/check_all_args.rF6NvKCL0O"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -U 1>"/tmp/check_all_args.hc2mXfSk0X" 2>"/tmp/check_all_args.rF6NvKCL0O"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -U' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --rusage 1>"/tmp/check_all_args.C1T0bRbL5R" 2>"/tmp/check_all_args.q79rv5bc6w"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --rusage 1>"/tmp/check_all_args.C1T0bRbL5R" 2>"/tmp/check_all_args.q79rv5bc6w"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --rusage 1>"/tmp/check_all_args.C1T0bRbL5R" 2>"/tmp/check_all_args.q79rv5bc6w"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --rusage' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -v 1>"/tmp/check_all_args.fGDKYaLRhJ" 2>"/tmp/check_all_args.6OhntAaNm3"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -v 1>"/tmp/check_all_args.fGDKYaLRhJ" 2>"/tmp/check_all_args.6OhntAaNm3"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -v 1>"/tmp/check_all_args.fGDKYaLRhJ" 2>"/tmp/check_all_args.6OhntAaNm3"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -v' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --version 1>"/tmp/check_all_args.PvwLfCQaob" 2>"/tmp/check_all_args.OU8BEozglR"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --version 1>"/tmp/check_all_args.PvwLfCQaob" 2>"/tmp/check_all_args.OU8BEozglR"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --version 1>"/tmp/check_all_args.PvwLfCQaob" 2>"/tmp/check_all_args.OU8BEozglR"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --version' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -w 1>"/tmp/check_all_args.Ya0D2O8umQ" 2>"/tmp/check_all_args.yuv1Xm6ZJN"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -w 1>"/tmp/check_all_args.Ya0D2O8umQ" 2>"/tmp/check_all_args.yuv1Xm6ZJN"' 307s WARNING: 307s WARNING: 307s WARNING: Found extra capability procenv is not aware of (number 40) 307s WARNING: 307s WARNING: Note that this warning will appear if procenv is built on a 307s WARNING: system which is running a newer kernel than the 307s WARNING: development environment assumes (for example if built in a 307s WARNING: chroot for a back-level release of ubuntu) 307s WARNING: 307s WARNING: Please check for a newer version of procenv, 307s WARNING: build on a newer system, or raise a bug at: 307s WARNING: 307s WARNING: https://github.com/jamesodhunt/procenv 307s WARNING: 307s WARNING: 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -w 1>"/tmp/check_all_args.Ya0D2O8umQ" 2>"/tmp/check_all_args.yuv1Xm6ZJN"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -w' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --capabilities 1>"/tmp/check_all_args.snc9pJDPND" 2>"/tmp/check_all_args.VSsTYA0wZg"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --capabilities 1>"/tmp/check_all_args.snc9pJDPND" 2>"/tmp/check_all_args.VSsTYA0wZg"' 307s WARNING: 307s WARNING: 307s WARNING: Found extra capability procenv is not aware of (number 40) 307s WARNING: 307s WARNING: Note that this warning will appear if procenv is built on a 307s WARNING: system which is running a newer kernel than the 307s WARNING: development environment assumes (for example if built in a 307s WARNING: chroot for a back-level release of ubuntu) 307s WARNING: 307s WARNING: Please check for a newer version of procenv, 307s WARNING: build on a newer system, or raise a bug at: 307s WARNING: 307s WARNING: https://github.com/jamesodhunt/procenv 307s WARNING: 307s WARNING: 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --capabilities 1>"/tmp/check_all_args.snc9pJDPND" 2>"/tmp/check_all_args.VSsTYA0wZg"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --capabilities' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -x 1>"/tmp/check_all_args.HI64eQiW2Z" 2>"/tmp/check_all_args.Z7HCiM0sR4"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -x 1>"/tmp/check_all_args.HI64eQiW2Z" 2>"/tmp/check_all_args.Z7HCiM0sR4"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -x 1>"/tmp/check_all_args.HI64eQiW2Z" 2>"/tmp/check_all_args.Z7HCiM0sR4"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -x' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --pathconf 1>"/tmp/check_all_args.W2tj6dQ6Ou" 2>"/tmp/check_all_args.idH8fKXuia"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --pathconf 1>"/tmp/check_all_args.W2tj6dQ6Ou" 2>"/tmp/check_all_args.idH8fKXuia"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --pathconf 1>"/tmp/check_all_args.W2tj6dQ6Ou" 2>"/tmp/check_all_args.idH8fKXuia"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --pathconf' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -y 1>"/tmp/check_all_args.Nf588Mclm7" 2>"/tmp/check_all_args.uTqQEpG6BR"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -y 1>"/tmp/check_all_args.Nf588Mclm7" 2>"/tmp/check_all_args.uTqQEpG6BR"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -y 1>"/tmp/check_all_args.Nf588Mclm7" 2>"/tmp/check_all_args.uTqQEpG6BR"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -y' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --sysconf 1>"/tmp/check_all_args.ABMbYesThx" 2>"/tmp/check_all_args.Nj5jOkXcr7"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --sysconf 1>"/tmp/check_all_args.ABMbYesThx" 2>"/tmp/check_all_args.Nj5jOkXcr7"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --sysconf 1>"/tmp/check_all_args.ABMbYesThx" 2>"/tmp/check_all_args.Nj5jOkXcr7"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --sysconf' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -Y 1>"/tmp/check_all_args.5A1xxKTRvI" 2>"/tmp/check_all_args.AOU5Jif5fa"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -Y 1>"/tmp/check_all_args.5A1xxKTRvI" 2>"/tmp/check_all_args.AOU5Jif5fa"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -Y 1>"/tmp/check_all_args.5A1xxKTRvI" 2>"/tmp/check_all_args.AOU5Jif5fa"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -Y' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --memory 1>"/tmp/check_all_args.d9NkLUBQhU" 2>"/tmp/check_all_args.B40WnYN8mv"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --memory 1>"/tmp/check_all_args.d9NkLUBQhU" 2>"/tmp/check_all_args.B40WnYN8mv"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --memory 1>"/tmp/check_all_args.d9NkLUBQhU" 2>"/tmp/check_all_args.B40WnYN8mv"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --memory' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv -z 1>"/tmp/check_all_args.dWZySF9uql" 2>"/tmp/check_all_args.X2BLtPuPpR"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text -z 1>"/tmp/check_all_args.dWZySF9uql" 2>"/tmp/check_all_args.X2BLtPuPpR"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json -z 1>"/tmp/check_all_args.dWZySF9uql" 2>"/tmp/check_all_args.X2BLtPuPpR"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml -z' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --timezone 1>"/tmp/check_all_args.4WA6aaHMkn" 2>"/tmp/check_all_args.WERUKHuoEN"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=text --timezone 1>"/tmp/check_all_args.4WA6aaHMkn" 2>"/tmp/check_all_args.WERUKHuoEN"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=json --timezone 1>"/tmp/check_all_args.4WA6aaHMkn" 2>"/tmp/check_all_args.WERUKHuoEN"' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Running '../src/procenv --format=xml --timezone' 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure ../src/procenv runs with no errors 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensuring output is sorted by section 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure --file= works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure running multiple '--file= --version' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--file-append --file= --version' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure --output=stdout works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure --output=stderr works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure --exec works (with no previous arguments) 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--version --exec' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--exec' can exec ../src/procenv 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure 'PROCENV_EXEC' and 'PROCENV_FILE' variables work 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--format=text' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--format=crumb' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--indent-char=.' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--indent-char=;' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--indent-char=12' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--indent-char=123' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--indent-char=1234' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--separator=.' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--separator=;' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--separator=12' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--separator=123' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--separator=1234' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--crumb-separator=.' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--crumb-separator=;' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--crumb-separator=12' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--crumb-separator=123' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--crumb-separator=1234' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--format=xml' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure '--format=json' works 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure non-display option ('--crumb-separator=.') disallowed after display option ('--meta') 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure non-display option ('--file=/tmp/foo') disallowed after display option ('--meta') 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure non-display option ('--format=crumb') disallowed after display option ('--meta') 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure non-display option ('--indent=7') disallowed after display option ('--meta') 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure non-display option ('--indent-char=X') disallowed after display option ('--meta') 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure non-display option ('--separator=X') disallowed after display option ('--meta') 307s INFO:LANG=POSIX:LC_ALL=POSIX: Ensure an empty environment is tolerated 307s PASS: check_all_args 307s meta: 307s version: 0.51 307s package: procenv 0.51 307s mode: non-privileged 307s build-type: reproducible 307s driver: 307s name: linux 307s file: platform/linux/platform.c 307s format-type: text 307s format-version: 17 307s arguments: 307s count: 1 307s list: 307s argv[0]: ./procenv 307s capabilities: 307s count (CAP_LAST_CAP+1): 41 307s known: 307s CAP_CHOWN: 307s number: 0 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_DAC_OVERRIDE: 307s number: 1 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_DAC_READ_SEARCH: 307s number: 2 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_FOWNER: 307s number: 3 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_FSETID: 307s number: 4 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_KILL: 307s number: 5 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SETGID: 307s number: 6 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SETUID: 307s number: 7 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SETPCAP: 307s number: 8 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_LINUX_IMMUTABLE: 307s number: 9 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_NET_BIND_SERVICE: 307s number: 10 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_NET_BROADCAST: 307s number: 11 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_NET_ADMIN: 307s number: 12 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_NET_RAW: 307s number: 13 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_IPC_LOCK: 307s number: 14 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_IPC_OWNER: 307s number: 15 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SYS_MODULE: 307s number: 16 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SYS_RAWIO: 307s number: 17 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SYS_CHROOT: 307s number: 18 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SYS_PTRACE: 307s number: 19 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SYS_PACCT: 307s number: 20 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SYS_ADMIN: 307s number: 21 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SYS_BOOT: 307s number: 22 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SYS_NICE: 307s number: 23 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SYS_RESOURCE: 307s number: 24 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SYS_TIME: 307s number: 25 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SYS_TTY_CONFIG: 307s number: 26 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_MKNOD: 307s number: 27 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_LEASE: 307s number: 28 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_AUDIT_WRITE: 307s number: 29 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_AUDIT_CONTROL: 307s number: 30 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SETFCAP: 307s number: 31 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_MAC_OVERRIDE: 307s number: 32 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_MAC_ADMIN: 307s number: 33 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_SYSLOG: 307s number: 34 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_WAKE_ALARM: 307s number: 35 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_BLOCK_SUSPEND: 307s number: 36 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s CAP_AUDIT_READ: 307s number: 37 307s supported: yes 307s in bounding set: yes 307s effective: no 307s inheritable: no 307s permitted: no 307s unknown: 307s keep: no 307s securebits: 307s value: 0x0 307s fields: 307s SECBIT_KEEP_CAPS: 0 307s SECBIT_NO_SETUID_FIXUP: 0 307s SECBIT_NOROOT: 0 307s cgroups: 307s 0: 307s path: /user.slice/user-1000.slice/session-1.scope 307s clocks: 307s CLOCK_REALTIME: 307s resolution: 0.000000001s 307s CLOCK_REALTIME_COARSE: 307s resolution: 0.010000000s 307s CLOCK_MONOTONIC: 307s resolution: 0.000000001s 307s CLOCK_MONOTONIC_COARSE: 307s resolution: 0.010000000s 307s CLOCK_MONOTONIC_RAW: 307s resolution: 0.000000001s 307s CLOCK_MONOTONIC_RAW: 307s resolution: 0.000000001s 307s CLOCK_PROCESS_CPUTIME_ID: 307s resolution: 0.000000001s 307s CLOCK_THREAD_CPUTIME_ID: 307s resolution: 0.000000001s 307s CLOCK_BOOTTIME: 307s resolution: 0.000000001s 307s compiler: 307s name: GCC 307s version: 14.2.0 307s compile date (__DATE__): [suppressed] 307s compile time (__TIME__): [suppressed] 307s timestamp (__TIMESTAMP__): [suppressed] 307s translation unit (__FILE__): procenv.c 307s base file (__BASE_FILE__): procenv.c 307s feature test macros: 307s _ATFILE_SOURCE: defined 307s _BSD_SOURCE: not defined 307s _DEFAULT_SOURCE: defined 307s _FILE_OFFSET_BITS: not defined 307s _FORTIFY_SOURCE: defined 307s _GNU_SOURCE: defined 307s _ISOC11_SOURCE: defined 307s _ISOC95_SOURCE: defined 307s _ISOC99_SOURCE: defined 307s _LARGEFILE64_SOURCE: defined 307s _LARGEFILE_SOURCE: defined 307s _POSIX_C_SOURCE: 200809 307s _POSIX_RAW_SOCKETS: defined 307s _POSIX_SOURCE: defined 307s _REENTRANT: not defined 307s __STDC_VERSION__: 199901 307s __STRICT_ANSI__: not defined 307s __STDC_WANT_IEC_60559_BFP_EXT__: 1 307s __STDC_WANT_IEC_60559_FUNCS_EXT__: 1 307s __STDC_WANT_LIB_EXT2__: 1 307s _SVID_SOURCE: not defined 307s _THREAD_SAFE: not defined 307s _XOPEN_SOURCE: 700 307s _XOPEN_SOURCE_EXTENDED: defined 307s confstr: 307s _CS_GNU_LIBC_VERSION: 'glibc 2.40' 307s _CS_GNU_LIBPTHREAD_VERSION: 'NPTL 2.40' 307s _CS_LFS64_CFLAGS: '-D_LARGEFILE64_SOURCE' 307s _CS_LFS64_LDFLAGS: n/a 307s _CS_LFS64_LIBS: n/a 307s _CS_LFS64_LINTFLAGS: '-D_LARGEFILE64_SOURCE' 307s _CS_LFS_CFLAGS: n/a 307s _CS_LFS_LDFLAGS: n/a 307s _CS_LFS_LIBS: n/a 307s _CS_LFS_LINTFLAGS: n/a 307s _CS_PATH: '/bin:/usr/bin' 307s _CS_POSIX_V6_ILP32_OFF32_CFLAGS: n/a 307s _CS_POSIX_V6_ILP32_OFF32_LDFLAGS: n/a 307s _CS_POSIX_V6_ILP32_OFF32_LIBS: n/a 307s _CS_POSIX_V6_ILP32_OFF32_LINTFLAGS: n/a 307s _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS: n/a 307s _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS: n/a 307s _CS_POSIX_V6_ILP32_OFFBIG_LIBS: n/a 307s _CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS: n/a 307s _CS_POSIX_V6_LP64_OFF64_CFLAGS: '-m64' 307s _CS_POSIX_V6_LP64_OFF64_LDFLAGS: '-m64' 307s _CS_POSIX_V6_LP64_OFF64_LIBS: n/a 307s _CS_POSIX_V6_LP64_OFF64_LINTFLAGS: n/a 307s _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS: n/a 307s _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS: n/a 307s _CS_POSIX_V6_LPBIG_OFFBIG_LIBS: n/a 307s _CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS: n/a 307s _CS_POSIX_V7_ILP32_OFF32_CFLAGS: n/a 307s _CS_POSIX_V7_ILP32_OFF32_LDFLAGS: n/a 307s _CS_POSIX_V7_ILP32_OFF32_LIBS: n/a 307s _CS_POSIX_V7_ILP32_OFF32_LINTFLAGS: n/a 307s _CS_POSIX_V7_ILP32_OFFBIG_CFLAGS: n/a 307s _CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS: n/a 307s _CS_POSIX_V7_ILP32_OFFBIG_LIBS: n/a 307s _CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS: n/a 307s _CS_POSIX_V7_LP64_OFF64_CFLAGS: '-m64' 307s _CS_POSIX_V7_LP64_OFF64_LDFLAGS: '-m64' 307s _CS_POSIX_V7_LP64_OFF64_LIBS: n/a 307s _CS_POSIX_V7_LP64_OFF64_LINTFLAGS: n/a 307s _CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS: n/a 307s _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS: n/a 307s _CS_POSIX_V7_LPBIG_OFFBIG_LIBS: n/a 307s _CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS: n/a 307s _CS_V5_WIDTH_RESTRICTED_ENVS: 'XBS5_LP64_OFF64' 307s _XBS5_WIDTH_RESTRICTED_ENVS: 'XBS5_LP64_OFF64' 307s XBS5_WIDTH_RESTRICTED_ENVS: 'XBS5_LP64_OFF64' 307s _CS_V6_WIDTH_RESTRICTED_ENVS: 'POSIX_V6_LP64_OFF64' 307s POSIX_V6_WIDTH_RESTRICTED_ENVS,_POSIX_V6_WIDTH_RESTRICTED_ENVS: 'POSIX_V6_LP64_OFF64' 307s _CS_V7_WIDTH_RESTRICTED_ENVS: 'POSIX_V7_LP64_OFF64' 307s _CS_XBS5_ILP32_OFF32_CFLAGS: n/a 307s _CS_XBS5_ILP32_OFF32_LDFLAGS: n/a 307s _CS_XBS5_ILP32_OFF32_LIBS: n/a 307s _CS_XBS5_ILP32_OFF32_LINTFLAGS: n/a 307s _CS_XBS5_ILP32_OFFBIG_CFLAGS: n/a 307s _CS_XBS5_ILP32_OFFBIG_LDFLAGS: n/a 307s _CS_XBS5_ILP32_OFFBIG_LIBS: n/a 307s _CS_XBS5_ILP32_OFFBIG_LINTFLAGS: n/a 307s _CS_XBS5_LP64_OFF64_CFLAGS: '-m64' 307s _CS_XBS5_LP64_OFF64_LDFLAGS: '-m64' 307s _CS_XBS5_LP64_OFF64_LIBS: n/a 307s _CS_XBS5_LP64_OFF64_LINTFLAGS: n/a 307s _CS_XBS5_LPBIG_OFFBIG_CFLAGS: n/a 307s _CS_XBS5_LPBIG_OFFBIG_LDFLAGS: n/a 307s _CS_XBS5_LPBIG_OFFBIG_LIBS: n/a 307s _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS: n/a 307s cpu: 307s number: 2 of 2 307s affinity list: 0-1 307s scheduler: 307s type: SCHED_OTHER 307s priority: 307s process: 0 307s process group: 0 307s user: 0 307s I/O priority: 307s process: 307s class: IOPRIO_CLASS_NONE 307s priority: 0 307s group: 307s class: IOPRIO_CLASS_NONE 307s priority: 0 307s user: 307s class: IOPRIO_CLASS_NONE 307s priority: 0 307s environment: 307s APT_CONFIG: /var/lib/sbuild/apt.conf 307s ASFLAGS: 307s ASFLAGS_FOR_BUILD: 307s CFLAGS: -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 307s CFLAGS_FOR_BUILD: -g -O2 -Werror=implicit-function-declaration -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security 307s CPPFLAGS: -Wdate-time -D_FORTIFY_SOURCE=3 307s CPPFLAGS_FOR_BUILD: -Wdate-time -D_FORTIFY_SOURCE=3 307s CXXFLAGS: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 307s CXXFLAGS_FOR_BUILD: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security 307s DEB_BUILD_ARCH: s390x 307s DEB_BUILD_ARCH_ABI: base 307s DEB_BUILD_ARCH_BITS: 64 307s DEB_BUILD_ARCH_CPU: s390x 307s DEB_BUILD_ARCH_ENDIAN: big 307s DEB_BUILD_ARCH_LIBC: gnu 307s DEB_BUILD_ARCH_OS: linux 307s DEB_BUILD_GNU_CPU: s390x 307s DEB_BUILD_GNU_SYSTEM: linux-gnu 307s DEB_BUILD_GNU_TYPE: s390x-linux-gnu 307s DEB_BUILD_MULTIARCH: s390x-linux-gnu 307s DEB_BUILD_OPTIONS: parallel=2 307s DEB_BUILD_PROFILES: noudeb 307s DEB_HOST_ARCH: s390x 307s DEB_HOST_ARCH_ABI: base 307s DEB_HOST_ARCH_BITS: 64 307s DEB_HOST_ARCH_CPU: s390x 307s DEB_HOST_ARCH_ENDIAN: big 307s DEB_HOST_ARCH_LIBC: gnu 307s DEB_HOST_ARCH_OS: linux 307s DEB_HOST_GNU_CPU: s390x 307s DEB_HOST_GNU_SYSTEM: linux-gnu 307s DEB_HOST_GNU_TYPE: s390x-linux-gnu 307s DEB_HOST_MULTIARCH: s390x-linux-gnu 307s DEB_RULES_REQUIRES_ROOT: binary-targets 307s DEB_TARGET_ARCH: s390x 307s DEB_TARGET_ARCH_ABI: base 307s DEB_TARGET_ARCH_BITS: 64 307s DEB_TARGET_ARCH_CPU: s390x 307s DEB_TARGET_ARCH_ENDIAN: big 307s DEB_TARGET_ARCH_LIBC: gnu 307s DEB_TARGET_ARCH_OS: linux 307s DEB_TARGET_GNU_CPU: s390x 307s DEB_TARGET_GNU_SYSTEM: linux-gnu 307s DEB_TARGET_GNU_TYPE: s390x-linux-gnu 307s DEB_TARGET_MULTIARCH: s390x-linux-gnu 307s DFLAGS: -frelease 307s DFLAGS_FOR_BUILD: -frelease 307s DH_INTERNAL_BUILDFLAGS: 1 307s ELF_PACKAGE_METADATA: {"type":"deb","os":"ubuntu","name":"procenv","version":"0.51-0.2","architecture":"s390x"} 307s FCFLAGS: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 307s FCFLAGS_FOR_BUILD: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong 307s FFLAGS: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 307s FFLAGS_FOR_BUILD: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong 307s HOME: /sbuild-nonexistent 307s LANG: C.UTF-8 307s LC_COLLATE: C.UTF-8 307s LC_CTYPE: C.UTF-8 307s LDFLAGS: -Wl,-Bsymbolic-functions -Wl,-z,relro 307s LDFLAGS_FOR_BUILD: -Wl,-z,relro 307s LOGNAME: ubuntu 307s MAKEFLAGS: -j1 -- VERBOSE=1 TESTSUITEFLAGS=-j1\ --verbose 307s MAKELEVEL: 4 307s MFLAGS: -j1 307s OBJCFLAGS: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 307s OBJCFLAGS_FOR_BUILD: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security 307s OBJCXXFLAGS: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security -fno-stack-clash-protection -fdebug-prefix-map=/build/reproducible-path/procenv-0.51=/usr/src/procenv-0.51-0.2 307s OBJCXXFLAGS_FOR_BUILD: -g -O2 -mbackchain -ffile-prefix-map=/build/reproducible-path/procenv-0.51=. -fstack-protector-strong -Wformat -Werror=format-security 307s OLDPWD: /build/reproducible-path/procenv-0.51 307s PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games 307s PERL_USE_UNSAFE_INC: 1 307s PWD: /build/reproducible-path/procenv-0.51/src 307s RUSTFLAGS: -Ctarget-feature=+backchain 307s RUSTFLAGS_FOR_BUILD: 307s SCHROOT_ALIAS_NAME: plucky-s390x-sbuild 307s SCHROOT_CHROOT_NAME: plucky-s390x-sbuild 307s SCHROOT_COMMAND: dpkg-buildpackage --sanitize-env -us -uc -b 307s SCHROOT_GID: 1000 307s SCHROOT_GROUP: ubuntu 307s SCHROOT_SESSION_ID: plucky-s390x-sbuild-19efcf6b-9ec2-4021-b1e6-6555061bbd68 307s SCHROOT_UID: 1000 307s SCHROOT_USER: ubuntu 307s SHELL: /bin/sh 307s SHLVL: 1 307s SOURCE_DATE_EPOCH: 1607694716 307s TESTSUITEFLAGS: -j1 --verbose 307s USER: ubuntu 307s VERBOSE: 1 307s _: ./procenv 307s srcdir: . 307s file descriptors: 307s 0: 307s terminal: no 307s valid: yes 307s device: /dev/null 307s 1: 307s terminal: no 307s valid: yes 307s device: pipe:[29442] 307s 2: 307s terminal: no 307s valid: yes 307s device: pipe:[29442] 307s libc: 307s name: GNU libc (glibc) 307s version: 2 307s minor: 40 307s libraries: 307s linux-vdso64.so.1: 307s path: linux-vdso64.so.1 307s address: 0x3ffdb4fd000 307s libselinux.so.1: 307s path: /lib/s390x-linux-gnu/libselinux.so.1 307s address: 0x3ff80e00000 307s libcap.so.2: 307s path: /lib/s390x-linux-gnu/libcap.so.2 307s address: 0x3ff80d80000 307s libc.so.6: 307s path: /lib/s390x-linux-gnu/libc.so.6 307s address: 0x3ff80b80000 307s libpcre2-8.so.0: 307s path: /lib/s390x-linux-gnu/libpcre2-8.so.0 307s address: 0x3ff80a80000 307s ld64.so.1: 307s path: /lib/ld64.so.1 307s address: 0x3ff80f00000 307s limits: 307s RLIMIT_AS: 307s soft: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s hard: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s RLIMIT_CORE: 307s soft: 307s current: 0 307s max: 18446744073709551615 307s hard: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s RLIMIT_CPU: 307s soft: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s hard: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s RLIMIT_DATA: 307s soft: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s hard: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s RLIMIT_FSIZE: 307s soft: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s hard: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s RLIMIT_RTTIME: 307s soft: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s hard: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s RLIMIT_LOCKS: 307s soft: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s hard: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s RLIMIT_MEMLOCK: 307s soft: 307s current: 523898880 307s max: 18446744073709551615 307s hard: 307s current: 523898880 307s max: 18446744073709551615 307s RLIMIT_MSGQUEUE: 307s soft: 307s current: 819200 307s max: 18446744073709551615 307s hard: 307s current: 819200 307s max: 18446744073709551615 307s RLIMIT_NICE: 307s soft: 307s current: 0 307s max: 18446744073709551615 307s hard: 307s current: 0 307s max: 18446744073709551615 307s RLIMIT_NOFILE: 307s soft: 307s current: 1024 307s max: 18446744073709551615 307s hard: 307s current: 1073741816 307s max: 18446744073709551615 307s RLIMIT_NPROC: 307s soft: 307s current: 15897 307s max: 18446744073709551615 307s hard: 307s current: 15897 307s max: 18446744073709551615 307s RLIMIT_RSS: 307s soft: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s hard: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s RLIMIT_RTPRIO: 307s soft: 307s current: 0 307s max: 18446744073709551615 307s hard: 307s current: 0 307s max: 18446744073709551615 307s RLIMIT_SIGPENDING: 307s soft: 307s current: 15897 307s max: 18446744073709551615 307s hard: 307s current: 15897 307s max: 18446744073709551615 307s RLIMIT_STACK: 307s soft: 307s current: 8388608 307s max: 18446744073709551615 307s hard: 307s current: 18446744073709551615 307s max: 18446744073709551615 307s locale: 307s LANG: C.UTF-8 307s LANGUAGE: 307s LC_ADDRESS: C.UTF-8 307s LC_COLLATE: C.UTF-8 307s LC_CTYPE: C.UTF-8 307s LC_IDENTIFICATION: C.UTF-8 307s LC_MEASUREMENT: C.UTF-8 307s LC_MESSAGES: C.UTF-8 307s LC_MONETARY: C.UTF-8 307s LC_NAME: C.UTF-8 307s LC_NUMERIC: C.UTF-8 307s LC_PAPER: C.UTF-8 307s LC_TELEPHONE: C.UTF-8 307s LC_TIME: C.UTF-8 307s LC_ALL: 307s memory: 307s page size: 4096 bytes 307s numa: 307s message queues: 307s info: 307s msgpool: 0 307s msgmap: 0 307s msgmax: 8192 307s msgmnb: 16384 307s msgmni: 32000 307s msgssz: 16 307s msgtql: 0 307s msgseg: 65535 307s sets: 307s misc: 307s umask: 0022 307s current directory (cwd): '/build/reproducible-path/procenv-0.51/src' 307s root: '/' 307s chroot: yes 307s container: no 307s vm: no 307s prctl: 307s process endian: unknown 307s dumpable: yes 307s floating point emulation: unknown 307s floating point exceptions: unknown 307s process name: procenv 307s parent death signal: disabled 307s secure computing: disabled 307s process timing: statistical 307s timestamp counter read: unknown 307s machine-check exception: system default 307s no new privileges: normal execve 307s timer slack: 50000ns 307s child subreaper: no 307s clear child tid address: 0x3ff 307s security module: 307s name: unknown 307s context: unknown 307s kernel headers version: 6.12.11 307s personality: 307s type: PER_LINUX 307s flags: 307s mounts: 307s /: 307s filesystem: 'plucky-s390x-sbuild' 307s canonical: unknown 307s type: 'overlay' 307s options: 'rw,relatime,lowerdir=/var/lib/schroot/union/underlay/plucky-s390x-sbuild-19efcf6b-9ec2-4021-b1e6-6555061bbd68,upperdir=/var/lib/schroot/union/overlay/plucky-s390x-sbuild-19efcf6b-9ec2-4021-b1e6-6555061bbd68/upper,workdir=/var/lib/schroot/union/overlay/plucky-s390x-sbuild-19efcf6b-9ec2-4021-b1e6-6555061bbd68/work,uuid=on,nouserxattr' 307s pathconf: 307s _PC_ALLOC_SIZE_MIN: 4096 307s _PC_ASYNC_IO: n/a 307s _PC_CHOWN_RESTRICTED: 1 307s _PC_FILESIZEBITS: 32 307s _PC_LINK_MAX: 127 307s _PC_MAX_CANON: 255 307s _PC_MAX_INPUT: 255 307s _PC_NAME_MAX: 255 307s _PC_NO_TRUNC: 1 307s _PC_PATH_MAX: 4096 307s _PC_PIPE_BUF: 4096 307s _PC_PRIO_IO: n/a 307s _PC_REC_INCR_XFER_SIZE: n/a 307s _PC_REC_MAX_XFER_SIZE: n/a 307s _PC_REC_MIN_XFER_SIZE: 4096 307s _PC_REC_XFER_ALIGN: 4096 307s _PC_SOCK_MAXBUF: n/a 307s _PC_SYMLINK_MAX: n/a 307s _PC_2_SYMLINKS: 1 307s _PC_SYNC_IO: n/a 307s _PC_VDISABLE: 0 307s device: 307s major: 0 307s minor: 52 307s dump frequency: 0 307s fsck pass number: 0 307s fsid: 869050f00a2bf7b3 307s optimal block size: 4096 307s blocks: 307s size: 1024 bytes 307s total: 20252352 307s used: 2594944 307s free: 17657408 307s available: 17641024 307s files/inodes: 307s total: 2560000 307s used: 80510 307s free: 2479490 307s /proc: 307s filesystem: 'proc' 307s canonical: unknown 307s type: 'proc' 307s options: 'rw,nosuid,nodev,noexec,relatime' 307s pathconf: 307s _PC_ALLOC_SIZE_MIN: 4096 307s _PC_ASYNC_IO: n/a 307s _PC_CHOWN_RESTRICTED: 1 307s _PC_FILESIZEBITS: 32 307s _PC_LINK_MAX: 127 307s _PC_MAX_CANON: 255 307s _PC_MAX_INPUT: 255 307s _PC_NAME_MAX: 255 307s _PC_NO_TRUNC: 1 307s _PC_PATH_MAX: 4096 307s _PC_PIPE_BUF: 4096 307s _PC_PRIO_IO: n/a 307s _PC_REC_INCR_XFER_SIZE: n/a 307s _PC_REC_MAX_XFER_SIZE: n/a 307s _PC_REC_MIN_XFER_SIZE: 4096 307s _PC_REC_XFER_ALIGN: 4096 307s _PC_SOCK_MAXBUF: n/a 307s _PC_SYMLINK_MAX: n/a 307s _PC_2_SYMLINKS: 1 307s _PC_SYNC_IO: n/a 307s _PC_VDISABLE: 0 307s device: 307s major: 0 307s minor: 23 307s dump frequency: 0 307s fsck pass number: 0 307s fsid: 0000000000000017 307s optimal block size: 4096 307s blocks: 307s size: 1024 bytes 307s total: 0 307s used: 0 307s free: 0 307s available: 0 307s files/inodes: 307s total: 0 307s used: 0 307s free: 0 307s /sys: 307s filesystem: 'sysfs' 307s canonical: unknown 307s type: 'sysfs' 307s options: 'rw,nosuid,nodev,noexec,relatime' 307s pathconf: 307s _PC_ALLOC_SIZE_MIN: 4096 307s _PC_ASYNC_IO: n/a 307s _PC_CHOWN_RESTRICTED: 1 307s _PC_FILESIZEBITS: 32 307s _PC_LINK_MAX: 127 307s _PC_MAX_CANON: 255 307s _PC_MAX_INPUT: 255 307s _PC_NAME_MAX: 255 307s _PC_NO_TRUNC: 1 307s _PC_PATH_MAX: 4096 307s _PC_PIPE_BUF: 4096 307s _PC_PRIO_IO: n/a 307s _PC_REC_INCR_XFER_SIZE: n/a 307s _PC_REC_MAX_XFER_SIZE: n/a 307s _PC_REC_MIN_XFER_SIZE: 4096 307s _PC_REC_XFER_ALIGN: 4096 307s _PC_SOCK_MAXBUF: n/a 307s _PC_SYMLINK_MAX: n/a 307s _PC_2_SYMLINKS: 1 307s _PC_SYNC_IO: n/a 307s _PC_VDISABLE: 0 307s device: 307s major: 0 307s minor: 22 307s dump frequency: 0 307s fsck pass number: 0 307s fsid: ad3da427abe4d819 307s optimal block size: 4096 307s blocks: 307s size: 1024 bytes 307s total: 0 307s used: 0 307s free: 0 307s available: 0 307s files/inodes: 307s total: 0 307s used: 0 307s free: 0 307s /dev/pts: 307s filesystem: '/dev/pts' 307s canonical: unknown 307s type: 'devpts' 307s options: 'rw,relatime,gid=5,mode=620,ptmxmode=666' 307s pathconf: 307s _PC_ALLOC_SIZE_MIN: 4096 307s _PC_ASYNC_IO: n/a 307s _PC_CHOWN_RESTRICTED: 1 307s _PC_FILESIZEBITS: 32 307s _PC_LINK_MAX: 127 307s _PC_MAX_CANON: 255 307s _PC_MAX_INPUT: 255 307s _PC_NAME_MAX: 255 307s _PC_NO_TRUNC: 1 307s _PC_PATH_MAX: 4096 307s _PC_PIPE_BUF: 4096 307s _PC_PRIO_IO: n/a 307s _PC_REC_INCR_XFER_SIZE: n/a 307s _PC_REC_MAX_XFER_SIZE: n/a 307s _PC_REC_MIN_XFER_SIZE: 4096 307s _PC_REC_XFER_ALIGN: 4096 307s _PC_SOCK_MAXBUF: n/a 307s _PC_SYMLINK_MAX: n/a 307s _PC_2_SYMLINKS: 0 307s _PC_SYNC_IO: n/a 307s _PC_VDISABLE: 0 307s device: 307s major: 0 307s minor: 54 307s dump frequency: 0 307s fsck pass number: 0 307s fsid: 0000000000000036 307s optimal block size: 4096 307s blocks: 307s size: 1024 bytes 307s total: 0 307s used: 0 307s free: 0 307s available: 0 307s files/inodes: 307s total: 0 307s used: 0 307s free: 0 307s /dev/shm: 307s filesystem: 'tmpfs' 307s canonical: unknown 307s type: 'tmpfs' 307s options: 'rw,relatime,inode64' 307s pathconf: 307s _PC_ALLOC_SIZE_MIN: 4096 307s _PC_ASYNC_IO: n/a 307s _PC_CHOWN_RESTRICTED: 1 307s _PC_FILESIZEBITS: 32 307s _PC_LINK_MAX: 127 307s _PC_MAX_CANON: 255 307s _PC_MAX_INPUT: 255 307s _PC_NAME_MAX: 255 307s _PC_NO_TRUNC: 1 307s _PC_PATH_MAX: 4096 307s _PC_PIPE_BUF: 4096 307s _PC_PRIO_IO: n/a 307s _PC_REC_INCR_XFER_SIZE: n/a 307s _PC_REC_MAX_XFER_SIZE: n/a 307s _PC_REC_MIN_XFER_SIZE: 4096 307s _PC_REC_XFER_ALIGN: 4096 307s _PC_SOCK_MAXBUF: n/a 307s _PC_SYMLINK_MAX: n/a 307s _PC_2_SYMLINKS: 1 307s _PC_SYNC_IO: n/a 307s _PC_VDISABLE: 0 307s device: 307s major: 0 307s minor: 55 307s dump frequency: 0 307s fsck pass number: 0 307s fsid: 237732e967c409fc 307s optimal block size: 4096 307s blocks: 307s size: 1024 bytes 307s total: 2046480 307s used: 0 307s free: 2046480 307s available: 2046480 307s files/inodes: 307s total: 511620 307s used: 1 307s free: 511619 307s /build: 307s filesystem: '/dev/vda1' 307s canonical: unknown 307s type: 'ext4' 307s options: 'rw,relatime,discard,errors=remount-ro,commit=30' 307s pathconf: 307s _PC_ALLOC_SIZE_MIN: 4096 307s _PC_ASYNC_IO: n/a 307s _PC_CHOWN_RESTRICTED: 1 307s _PC_FILESIZEBITS: 64 307s _PC_LINK_MAX: 65000 307s _PC_MAX_CANON: 255 307s _PC_MAX_INPUT: 255 307s _PC_NAME_MAX: 255 307s _PC_NO_TRUNC: 1 307s _PC_PATH_MAX: 4096 307s _PC_PIPE_BUF: 4096 307s _PC_PRIO_IO: n/a 307s _PC_REC_INCR_XFER_SIZE: n/a 307s _PC_REC_MAX_XFER_SIZE: n/a 307s _PC_REC_MIN_XFER_SIZE: 4096 307s _PC_REC_XFER_ALIGN: 4096 307s _PC_SOCK_MAXBUF: n/a 307s _PC_SYMLINK_MAX: n/a 307s _PC_2_SYMLINKS: 1 307s _PC_SYNC_IO: n/a 307s _PC_VDISABLE: 0 307s device: 307s major: 253 307s minor: 1 307s dump frequency: 0 307s fsck pass number: 0 307s fsid: 124be179c6922e6c 307s optimal block size: 4096 307s blocks: 307s size: 1024 bytes 307s total: 20252352 307s used: 2594944 307s free: 17657408 307s available: 17641024 307s files/inodes: 307s total: 2560000 307s used: 80510 307s free: 2479490 307s namespaces: 307s cgroup: 4026531835 307s ipc: 4026531839 307s mnt: 4026531841 307s net: 4026531840 307s pid: 4026531836 307s pid: 4026531836 307s time: 4026531834 307s time: 4026531834 307s user: 4026531837 307s uts: 4026531838 307s network: 307s lo: 307s family: AF_INET (0x2) 307s flags: 307s value: 0x10049 307s fields: 307s IFF_UP: 0x1 307s IFF_LOOPBACK: 0x8 307s IFF_RUNNING: 0x40 307s IFF_LOWER_UP: 0x10000 307s extended flags: 307s value: 0x0 307s fields: 307s mac: n/a 307s mtu: 65536 307s address: 127.0.0.1 307s netmask: 255.0.0.0 307s enc1: 307s family: AF_INET (0x2) 307s flags: 307s value: 0x11043 307s fields: 307s IFF_UP: 0x1 307s IFF_BROADCAST: 0x2 307s IFF_RUNNING: 0x40 307s IFF_MULTICAST: 0x1000 307s IFF_LOWER_UP: 0x10000 307s extended flags: 307s value: 0x0 307s fields: 307s mac: fa:16:3e:dc:f4:e1 307s mtu: 1500 307s address: 10.145.232.40 307s netmask: 255.255.255.0 307s broadcast: 10.145.232.255 307s lo: 307s family: AF_INET6 (0xa) 307s flags: 307s value: 0x10049 307s fields: 307s IFF_UP: 0x1 307s IFF_LOOPBACK: 0x8 307s IFF_RUNNING: 0x40 307s IFF_LOWER_UP: 0x10000 307s extended flags: 307s value: 0x0 307s fields: 307s mac: n/a 307s mtu: 65536 307s address: ::1 307s netmask: ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff 307s enc1: 307s family: AF_INET6 (0xa) 307s flags: 307s value: 0x11043 307s fields: 307s IFF_UP: 0x1 307s IFF_BROADCAST: 0x2 307s IFF_RUNNING: 0x40 307s IFF_MULTICAST: 0x1000 307s IFF_LOWER_UP: 0x10000 307s extended flags: 307s value: 0x0 307s fields: 307s mac: n/a 307s mtu: 1500 307s address: fe80::f816:3eff:fedc:f4e1%enc1 307s netmask: ffff:ffff:ffff:ffff:: 307s oom: 307s oom_score: 666 307s oom_adj: 0 307s oom_score_adj: 0 307s platform: 307s operating system: Linux (zSeries) 307s architecture: SystemZ 307s kernel bits: 64 307s executable bits: 64 307s code endian: big 307s data model: LP64 (4/8/8) 307s process: 307s process id (pid): 15312 307s parent process id (ppid): 12179 307s session id (sid): 10843 (leader=no) 307s name: 'procenv' 307s ancestry: 15312 ('procenv'), 12179 ('bash'), 12175 ('make'), 12154 ('make'), 12149 ('bash'), 12148 ('make'), 12135 ('dh_auto_test'), 10877 ('dh'), 10876 ('rules'), 10844 ('dpkg-buildpacka'), 10843 ('schroot'), 9850 ('sbuild'), 9849 ('runuser'), 3234 ('build-procenv'), 3215 ('wrapper.sh'), 3214 ('su'), 3212 ('autopkgtest-run'), 3211 ('sudo'), 867 ('sshd-session'), 804 ('sshd-session'), 796 ('sshd'), 1 ('systemd') 307s process group id: 10843 (leader=no) 307s foreground process group: -1 307s terminal: '/dev/tty' 307s has controlling terminal: no 307s on console: no 307s user: 307s real user id (uid): 1000 ('ubuntu') 307s effective user id (euid): 1000 ('ubuntu') 307s saved set-user-id (suid): 1000 ('ubuntu') 307s group: 307s real group id (gid): 1000 ('ubuntu') 307s effective group id (egid): 1000 ('ubuntu') 307s saved set-group-id (sgid): 1000 ('ubuntu') 307s login name: 'ubuntu' 307s passwd: 307s name: 'ubuntu' 307s gecos: 'Ubuntu' 307s dir: '/home/ubuntu' 307s shell: '/bin/bash' 307s groups: 'adm' (4), 'cdrom' (24), 'cpacfstats' (107), 'dip' (30), 'lxd' (103), 'sbuild' (115), 'sudo' (27), 'ubuntu' (1000) 307s ranges: 307s char: 307s size: 1 byte 307s unsigned: 307s decimal: 0 to 255 307s symbolic: 0 to UCHAR_MAX 307s scientific: 0.000000e+00 to 2.550000e+02 307s hex: 0x00 to 0xff 307s signed: 307s decimal: -128 to 127 307s symbolic: SCHAR_MIN to SCHAR_MAX 307s short int: 307s size: 2 bytes 307s unsigned: 307s decimal: 0 to 65535 307s symbolic: 0 to USHRT_MAX 307s scientific: 0.000000e+00 to 6.553500e+04 307s hex: 0x0000 to 0xffff 307s signed: 307s decimal: -32768 to 32767 307s symbolic: SHRT_MIN to SHRT_MAX 307s int: 307s size: 4 bytes 307s unsigned: 307s decimal: 0 to 4294967295 307s symbolic: 0 to UINT_MAX 307s scientific: 0.000000e+00 to 4.294967e+09 307s hex: 0x00000000 to 0xffffffff 307s signed: 307s decimal: -2147483648 to 2147483647 307s symbolic: INT_MIN to INT_MAX 307s long int: 307s size: 8 bytes 307s unsigned: 307s decimal: 0 to 4294967295 307s symbolic: 0 to ULONG_MAX 307s scientific: 0.000000e+00 to 1.844674e+19 307s hex: 0x0000000000000000 to 0x00000000ffffffff 307s signed: 307s decimal: -9223372036854775808 to 9223372036854775807 307s symbolic: LONG_MIN to LONG_MAX 307s long long int: 307s size: 8 bytes 307s unsigned: 307s decimal: 0 to 18446744073709551615 307s symbolic: 0 to ULLONG_MAX 307s scientific: 0.000000e+00 to 1.844674e+19 307s hex: 0x0000000000000000 to 0xffffffffffffffff 307s signed: 307s decimal: -9223372036854775808 to 9223372036854775807 307s symbolic: LLONG_MIN to LLONG_MAX 307s float: 307s size: 4 bytes 307s signed: 1.175494e-38 to 3.402823e+38 307s symbolic: FLT_MIN to FLT_MAX 307s double: 307s size: 8 bytes 307s signed: 2.225074e-308 to 1.797693e+308 307s symbolic: DBL_MIN to DBL_MAX 307s long double: 307s size: 16 bytes 307s signed: 3.362103e-4932 to 1.189731e+4932 307s symbolic: LDBL_MIN to LDBL_MAX 307s rusage: 307s ru_maxrss: 2836 307s ru_ixrss: 0 307s ru_idrss: 0 307s ru_isrss: 0 307s ru_minflt: 207 307s ru_majflt: 0 307s ru_nswap: 0 307s ru_inblock: 0 307s ru_oublock: 0 307s ru_msgsnd: 0 307s ru_msgrcv: 0 307s ru_nsignals: 0 307s ru_nvcsw: 0 307s ru_nivcsw: 1 307s semaphores: 307s info: 307s semmap: 1024000000 307s semmni: 32000 307s semmns: 1024000000 307s semmnu: 1024000000 307s semmsl: 32000 307s semopm: 500 307s semume: 500 307s semusz: 0 307s semvmx: 32767 307s semaem: 0 307s set: 307s shared memory: 307s info: 307s segments: 0 307s pages: 0 307s shm_rss: 0 307s shm_swp: 0 307s swap_attempts: 0 307s swap_successes: 0 307s segments: 307s signals: 307s SIGHUP: 307s number: 1 307s description: 'Hangup' 307s blocked: no 307s ignored: no 307s SIGINT: 307s number: 2 307s description: 'Interrupt' 307s blocked: no 307s ignored: no 307s SIGQUIT: 307s number: 3 307s description: 'Quit' 307s blocked: no 307s ignored: no 307s SIGILL: 307s number: 4 307s description: 'Illegal instruction' 307s blocked: no 307s ignored: no 307s SIGTRAP: 307s number: 5 307s description: 'Trace/breakpoint trap' 307s blocked: no 307s ignored: no 307s SIGABRT: 307s number: 6 307s description: 'Aborted' 307s blocked: no 307s ignored: no 307s SIGBUS: 307s number: 7 307s description: 'Bus error' 307s blocked: no 307s ignored: no 307s SIGFPE: 307s number: 8 307s description: 'Floating point exception' 307s blocked: no 307s ignored: no 307s SIGKILL: 307s number: 9 307s description: 'Killed' 307s blocked: no 307s ignored: no 307s SIGUSR1: 307s number: 10 307s description: 'User defined signal 1' 307s blocked: no 307s ignored: no 307s SIGSEGV: 307s number: 11 307s description: 'Segmentation fault' 307s blocked: no 307s ignored: no 307s SIGUSR2: 307s number: 12 307s description: 'User defined signal 2' 307s blocked: no 307s ignored: no 307s SIGPIPE: 307s number: 13 307s description: 'Broken pipe' 307s blocked: no 307s ignored: no 307s SIGALRM: 307s number: 14 307s description: 'Alarm clock' 307s blocked: no 307s ignored: no 307s SIGTERM: 307s number: 15 307s description: 'Terminated' 307s blocked: no 307s ignored: no 307s SIGSTKFLT: 307s number: 16 307s description: 'Stack fault' 307s blocked: no 307s ignored: no 307s SIGCHLD|SIGCLD: 307s number: 17 307s description: 'Child exited' 307s blocked: no 307s ignored: no 307s SIGCONT: 307s number: 18 307s description: 'Continued' 307s blocked: no 307s ignored: no 307s SIGSTOP: 307s number: 19 307s description: 'Stopped (signal)' 307s blocked: no 307s ignored: no 307s SIGTSTP: 307s number: 20 307s description: 'Stopped' 307s blocked: no 307s ignored: no 307s SIGTTIN: 307s number: 21 307s description: 'Stopped (tty input)' 307s blocked: no 307s ignored: no 307s SIGTTOU: 307s number: 22 307s description: 'Stopped (tty output)' 307s blocked: no 307s ignored: no 307s SIGURG: 307s number: 23 307s description: 'Urgent I/O condition' 307s blocked: no 307s ignored: no 307s SIGXCPU: 307s number: 24 307s description: 'CPU time limit exceeded' 307s blocked: no 307s ignored: no 307s SIGXFSZ: 307s number: 25 307s description: 'File size limit exceeded' 307s blocked: no 307s ignored: no 307s SIGVTALRM: 307s number: 26 307s description: 'Virtual timer expired' 307s blocked: no 307s ignored: no 307s SIGPROF: 307s number: 27 307s description: 'Profiling timer expired' 307s blocked: no 307s ignored: no 307s SIGWINCH: 307s number: 28 307s description: 'Window changed' 307s blocked: no 307s ignored: no 307s SIGIO: 307s number: 29 307s description: 'I/O possible' 307s blocked: no 307s ignored: no 307s SIGPWR: 307s number: 30 307s description: 'Power failure' 307s blocked: no 307s ignored: no 307s SIGSYS: 307s number: 31 307s description: 'Bad system call' 307s blocked: no 307s ignored: no 307s sizeof: 307s bits/byte (CHAR_BIT): 8 307s blkcnt_t: 8 bytes 307s blksize_t: 8 bytes 307s char: 1 byte 307s clockid_t: 4 bytes 307s clock_t: 8 bytes 307s dev_t: 8 bytes 307s div_t: 8 bytes 307s double: 8 bytes 307s fenv_t: 16 bytes 307s fexcept_t: 4 bytes 307s float: 4 bytes 307s fpos_t: 16 bytes 307s fsblkcnt_t: 8 bytes 307s fsfilcnt_t: 8 bytes 307s gid_t: 4 bytes 307s id_t: 4 bytes 307s imaxdiv_t: 16 bytes 307s ino_t: 8 bytes 307s int: 4 bytes 307s int16_t: 2 bytes 307s int32_t: 4 bytes 307s int64_t: 8 bytes 307s int8_t: 1 byte 307s int_fast16_t: 8 bytes 307s int_fast32_t: 8 bytes 307s int_fast64_t: 8 bytes 307s int_fast8_t: 1 byte 307s int_least16_t: 2 bytes 307s int_least32_t: 4 bytes 307s int_least64_t: 8 bytes 307s int_least8_t: 1 byte 307s intmax_t: 8 bytes 307s intptr_t: 8 bytes 307s key_t: 4 bytes 307s ldiv_t: 16 bytes 307s lldiv_t: 16 bytes 307s long double: 16 bytes 307s long int: 8 bytes 307s long long int: 8 bytes 307s mbstate_t: 8 bytes 307s mode_t: 4 bytes 307s mode_t: 4 bytes 307s nlink_t: 8 bytes 307s off_t: 8 bytes 307s pid_t: 4 bytes 307s pthread_attr_t: 56 bytes 307s pthread_barrierattr_t: 4 bytes 307s pthread_barrier_t: 32 bytes 307s pthread_condattr_t: 4 bytes 307s pthread_cond_t: 48 bytes 307s pthread_key_t: 4 bytes 307s pthread_mutexattr_t: 4 bytes 307s pthread_mutex_t: 40 bytes 307s pthread_once_t: 4 bytes 307s pthread_rwlockattr_t: 8 bytes 307s pthread_rwlock_t: 56 bytes 307s pthread_spinlock_t: 4 bytes 307s pthread_t: 8 bytes 307s ptrdiff_t: 8 bytes 307s rlim_t: 8 bytes 307s short int: 2 bytes 307s sig_atomic_t: 4 bytes 307s size_t: 8 bytes 307s ssize_t: 8 bytes 307s suseconds_t: 8 bytes 307s timer_t: 8 bytes 307s time_t: 8 bytes 307s uid_t: 4 bytes 307s uint16_t: 2 bytes 307s uint32_t: 4 bytes 307s uint64_t: 8 bytes 307s uint8_t: 1 byte 307s uint_fast16_t: 8 bytes 307s uint_fast32_t: 8 bytes 307s uint_fast64_t: 8 bytes 307s uint_fast8_t: 1 byte 307s uint_least16_t: 2 bytes 307s uint_least32_t: 4 bytes 307s uint_least64_t: 8 bytes 307s uint_least8_t: 1 byte 307s uintmax_t: 8 bytes 307s uintptr_t: 8 bytes 307s useconds_t: 4 bytes 307s void *: 8 bytes 307s wchar_t: 4 bytes 307s wint_t: 4 bytes 307s stat: 307s argv[0]: './procenv' 307s real path: '/build/reproducible-path/procenv-0.51/src/procenv' 307s device: 307s major: 253 307s minor: 1 307s inode: 297333 307s permissions: 307s octal: 0755 307s symbolic: -rwxr-xr-x 307s hard links: 1 307s user id (uid): 1000 ('ubuntu') 307s group id (gid): 1000 ('ubuntu') 307s size: 630688 bytes (1232 512-byte blocks) 307s times: 307s atime (access): 1740010622 (Thu Feb 20 00:17:02 2025) 307s mtime (modification): 1740010620 (Thu Feb 20 00:17:00 2025) 307s ctime (status change): 1740010620 (Thu Feb 20 00:17:00 2025) 307s sysconf: 307s _SC_2_C_BIND: 200809 307s _SC_2_C_DEV: 200809 307s _SC_2_CHAR_TERM: 200809 307s _SC_2_C_VERSION: 200809 307s _SC_2_FORT_DEV: n/a 307s _SC_2_FORT_RUN: n/a 307s _SC_2_LOCALEDEF: 200809 307s _SC_2_PBS: n/a 307s _SC_2_PBS_ACCOUNTING: n/a 307s _SC_2_PBS_LOCATE: n/a 307s _SC_2_PBS_MESSAGE: n/a 307s _SC_2_PBS_TRACK: n/a 307s _SC_2_SW_DEV: 200809 307s _SC_2_UPE: n/a 307s _SC_2_VERSION: 200809 307s _SC_ADVISORY_INFO: 200809 307s _SC_AIO_LISTIO_MAX: n/a 307s _SC_AIO_MAX: n/a 307s _SC_AIO_PRIO_DELTA_MAX: 20 307s _SC_ARG_MAX: 2097152 307s _SC_ASYNCHRONOUS_IO: 200809 307s _SC_ATEXIT_MAX: 2147483647 307s _SC_AVPHYS_PAGES: 641335 307s _SC_BARRIERS: 200809 307s _SC_BASE: n/a 307s _SC_BC_BASE_MAX: 99 307s _SC_BC_DIM_MAX: 2048 307s _SC_BC_SCALE_MAX: 99 307s _SC_BC_STRING_MAX: 1000 307s _SC_CHAR_BIT: 8 307s _SC_CHARCLASS_NAME_MAX: 2048 307s _SC_CHAR_MAX: 255 307s _SC_CHAR_MIN: 0 307s _SC_CHILD_MAX: 15897 307s _SC_C_LANG_SUPPORT: n/a 307s _SC_C_LANG_SUPPORT_R: n/a 307s _SC_CLK_TCK: 100 307s _SC_CLOCK_SELECTION: 200809 307s _SC_COLL_WEIGHTS_MAX: 255 307s _SC_CPUTIME: 200809 307s _SC_DELAYTIMER_MAX: 2147483647 307s _SC_DEVICE_IO: n/a 307s _SC_DEVICE_SPECIFIC: n/a 307s _SC_DEVICE_SPECIFIC_R: n/a 307s _SC_EQUIV_CLASS_MAX: n/a 307s _SC_EXPR_NEST_MAX: 32 307s _SC_FD_MGMT: n/a 307s _SC_FIFO: n/a 307s _SC_FILE_ATTRIBUTES: n/a 307s _SC_FILE_LOCKING: n/a 307s _SC_FILE_SYSTEM: n/a 307s _SC_FSYNC: 200809 307s _SC_GETGR_R_SIZE_MAX: 1024 307s _SC_GETPW_R_SIZE_MAX: 1024 307s _SC_HOST_NAME_MAX: 64 307s _SC_INT_MAX: 2147483647 307s _SC_INT_MIN: -2147483648 307s _SC_IOV_MAX: 1024 307s _SC_IPV6: 200809 307s _SC_JOB_CONTROL: 1 307s _SC_LEVEL1_DCACHE_ASSOC: 8 307s _SC_LEVEL1_DCACHE_LINESIZE: 256 307s _SC_LEVEL1_DCACHE_SIZE: 131072 307s _SC_LEVEL1_ICACHE_ASSOC: 8 307s _SC_LEVEL1_ICACHE_LINESIZE: 256 307s _SC_LEVEL1_ICACHE_SIZE: 131072 307s _SC_LEVEL2_CACHE_ASSOC: 8 307s _SC_LEVEL2_CACHE_LINESIZE: 256 307s _SC_LEVEL2_CACHE_SIZE: 4194304 307s _SC_LEVEL3_CACHE_ASSOC: 32 307s _SC_LEVEL3_CACHE_LINESIZE: 256 307s _SC_LEVEL3_CACHE_SIZE: 268435456 307s _SC_LEVEL4_CACHE_ASSOC: 60 307s _SC_LEVEL4_CACHE_LINESIZE: 256 307s _SC_LEVEL4_CACHE_SIZE: 1006632960 307s _SC_LINE_MAX: 2048 307s _SC_LOGIN_NAME_MAX: 256 307s _SC_LONG_BIT: 64 307s _SC_MAPPED_FILES: 200809 307s _SC_MB_LEN_MAX: 16 307s _SC_MEMLOCK: 200809 307s _SC_MEMLOCK_RANGE: 200809 307s _SC_MEMORY_PROTECTION: 200809 307s _SC_MESSAGE_PASSING: 200809 307s _SC_MONOTONIC_CLOCK: 200809 307s _SC_MQ_OPEN_MAX: n/a 307s _SC_MQ_PRIO_MAX: 32768 307s _SC_MULTI_PROCESS: n/a 307s _SC_NETWORKING: n/a 307s _SC_NGROUPS_MAX: 65536 307s _SC_NL_ARGMAX: 4096 307s _SC_NL_LANGMAX: 2048 307s _SC_NL_MSGMAX: 2147483647 307s _SC_NL_NMAX: 2147483647 307s _SC_NL_SETMAX: 2147483647 307s _SC_NL_TEXTMAX: 2147483647 307s _SC_NPROCESSORS_CONF: 2 307s _SC_NPROCESSORS_ONLN: 2 307s _SC_NZERO: 20 307s _SC_OPEN_MAX: 1024 307s _SC_PAGESIZE: 4096 307s _SC_PAGE_SIZE: 4096 307s _SC_PASS_MAX: 8192 307s _SC_PHYS_PAGES: 1023241 307s _SC_PII: n/a 307s _SC_PII_INTERNET: n/a 307s _SC_PII_INTERNET_DGRAM: n/a 307s _SC_PII_INTERNET_STREAM: n/a 307s _SC_PII_OSI: n/a 307s _SC_PII_OSI_CLTS: n/a 307s _SC_PII_OSI_COTS: n/a 307s _SC_PII_OSI_M: n/a 307s _SC_PII_SOCKET: n/a 307s _SC_PII_XTI: n/a 307s _SC_PIPE: n/a 307s _SC_POLL: n/a 307s _SC_SINGLE_PROCESS: n/a 307s _SC_SYSTEM_DATABASE: n/a 307s _SC_SYSTEM_DATABASE_R: n/a 307s _SC_THREAD_KEYS_MAX: 1024 307s _SC_THREAD_DESTRUCTOR_ITERATIONS: 4 307s _SC_THREAD_THREADS_MAX: n/a 307s _SC_STREAM_MAX: 16 307s _SC_SYMLOOP_MAX: n/a 307s _SC_TTY_NAME_MAX: 32 307s _SC_TZNAME_MAX: n/a 307s _SC_TYPED_MEMORY_OBJECTS: n/a 307s _SC_USER_GROUPS: n/a 307s _SC_USER_GROUPS_R: n/a 307s _SC_VERSION: 200809 307s _SC_SIGQUEUE_MAX: 15897 307s _SC_T_IOV_MAX: n/a 307s _SC_THREAD_STACK_MIN: 16384 307s _SC_SSIZE_MAX: 32767 307s _SC_TIMER_MAX: n/a 307s _SC_UCHAR_MAX: 255 307s _SC_UINT_MAX: 4294967295 307s _SC_UIO_MAXIOV: 1024 307s _SC_ULONG_MAX: n/a 307s _SC_USHRT_MAX: 65535 307s _SC_V6_LPBIG_OFFBIG: n/a 307s _SC_WORD_BIT: 32 307s _SC_EXPR_NEST_MAX: 32 307s _SC_V6_ILP32_OFF32: n/a 307s _SC_V6_ILP32_OFFBIG: n/a 307s _SC_V6_LP64_OFF64: 1 307s _SC_V7_ILP32_OFF32: n/a 307s _SC_V7_ILP32_OFFBIG: n/a 307s _SC_V7_LPBIG_OFFBIG: n/a 307s _SC_V7_LP64_OFF64: 1 307s _SC_PRIORITIZED_IO: 200809 307s _SC_PRIORITY_SCHEDULING: 200809 307s _SC_RAW_SOCKETS: 200809 307s _SC_READER_WRITER_LOCKS: 200809 307s _SC_REALTIME_SIGNALS: 200809 307s _SC_RE_DUP_MAX: 32767 307s _SC_REGEXP: 1 307s _SC_REGEX_VERSION: n/a 307s _SC_RTSIG_MAX: 32 307s _SC_SAVED_IDS: 1 307s _SC_SCHAR_MAX: 127 307s _SC_SCHAR_MIN: -128 307s _SC_SELECT: n/a 307s _SC_SEMAPHORES: 200809 307s _SC_SEM_NSEMS_MAX: n/a 307s _SC_SEM_VALUE_MAX: 2147483647 307s _SC_SHARED_MEMORY_OBJECTS: 200809 307s _SC_SHELL: 1 307s _SC_SHRT_MAX: 32767 307s _SC_SHRT_MIN: -32768 307s _SC_SIGNALS: n/a 307s _SC_SPAWN: 200809 307s _SC_SPIN_LOCKS: 200809 307s _SC_SPORADIC_SERVER: n/a 307s _SC_SYNCHRONIZED_IO: 200809 307s _SC_THREAD_ATTR_STACKADDR: 200809 307s _SC_THREAD_ATTR_STACKSIZE: 200809 307s _SC_THREAD_CPUTIME: 200809 307s _SC_THREAD_PRIO_INHERIT: 200809 307s _SC_THREAD_PRIO_PROTECT: 200809 307s _SC_THREAD_PRIORITY_SCHEDULING: 200809 307s _SC_THREAD_PROCESS_SHARED: 200809 307s _SC_THREAD_ROBUST_PRIO_INHERIT: n/a 307s _SC_THREAD_ROBUST_PRIO_PROTECT: n/a 307s _SC_THREAD_SAFE_FUNCTIONS: 200809 307s _SC_THREAD_SPORADIC_SERVER: n/a 307s _SC_THREADS: 200809 307s _SC_TIMEOUTS: 200809 307s _SC_TIMERS: 200809 307s _SC_TRACE: n/a 307s _SC_TRACE_EVENT_FILTER: n/a 307s _SC_TRACE_INHERIT: n/a 307s _SC_TRACE_LOG: n/a 307s _SC_XBS5_ILP32_OFF32: n/a 307s _SC_XBS5_ILP32_OFFBIG: n/a 307s _SC_XBS5_LP64_OFF64: 1 307s _SC_XBS5_LPBIG_OFFBIG: n/a 307s _SC_XOPEN_CRYPT: n/a 307s _SC_XOPEN_ENH_I18N: 1 307s _SC_XOPEN_LEGACY: 1 307s _SC_XOPEN_REALTIME: 1 307s _SC_XOPEN_REALTIME_THREADS: 1 307s _SC_XOPEN_SHM: 1 307s _SC_XOPEN_UNIX: 1 307s _SC_XOPEN_XPG2: 1 307s _SC_XOPEN_XPG3: 1 307s _SC_XOPEN_XPG4: 1 307s _SC_XOPEN_VERSION: 700 307s _SC_XOPEN_XCU_VERSION: 4 307s threads: 307s stack size: 8388608 bytes 307s scope: PTHREAD_SCOPE_SYSTEM 307s guard size: 4096 bytes 307s scheduler: 307s type: SCHED_OTHER 307s priority: 0 307s inherit-scheduler attribute: PTHREAD_INHERIT_SCHED 307s concurrency: 0 307s time: 307s raw: 1740010629.366546689 307s local: Thu Feb 20 00:17:09 2025 307s ISO: 2025-01-20T00:17 307s timezone: 307s tzname[0]: 'UTC' 307s tzname[1]: 'UTC' 307s timezone: 0 307s daylight: 0 307s tty: 307s uname: 307s sysname: Linux 307s nodename: autopkgtest 307s release: 6.12.0-15-generic 307s version: #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 307s machine: s390x 307s domainname: (none) 307s PASS: procenv 307s ================== 307s All 4 tests passed 307s ================== 307s make[3]: Leaving directory '/build/reproducible-path/procenv-0.51/src' 307s make[2]: Leaving directory '/build/reproducible-path/procenv-0.51/src' 307s make[2]: Entering directory '/build/reproducible-path/procenv-0.51' 307s make[2]: Leaving directory '/build/reproducible-path/procenv-0.51' 307s make[1]: Leaving directory '/build/reproducible-path/procenv-0.51' 307s fakeroot debian/rules binary 307s dh binary --with autoreconf 307s dh: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_testroot 307s dh_prep 307s dh_auto_install --destdir=debian/procenv/ 307s dh_auto_install: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s make -j1 install DESTDIR=/build/reproducible-path/procenv-0.51/debian/procenv AM_UPDATE_INFO_DIR=no 307s make[1]: Entering directory '/build/reproducible-path/procenv-0.51' 307s Making install in src 307s make[2]: Entering directory '/build/reproducible-path/procenv-0.51/src' 307s make[3]: Entering directory '/build/reproducible-path/procenv-0.51/src' 307s /usr/bin/mkdir -p '/build/reproducible-path/procenv-0.51/debian/procenv/usr/bin' 307s /usr/bin/install -c procenv '/build/reproducible-path/procenv-0.51/debian/procenv/usr/bin' 307s make[3]: Nothing to be done for 'install-data-am'. 307s make[3]: Leaving directory '/build/reproducible-path/procenv-0.51/src' 307s make[2]: Leaving directory '/build/reproducible-path/procenv-0.51/src' 307s make[2]: Entering directory '/build/reproducible-path/procenv-0.51' 307s make[3]: Entering directory '/build/reproducible-path/procenv-0.51' 307s make[3]: Nothing to be done for 'install-exec-am'. 307s /usr/bin/mkdir -p '/build/reproducible-path/procenv-0.51/debian/procenv/usr/share/man/man1' 307s /usr/bin/install -c -m 644 man/procenv.1 '/build/reproducible-path/procenv-0.51/debian/procenv/usr/share/man/man1' 307s make[3]: Leaving directory '/build/reproducible-path/procenv-0.51' 307s make[2]: Leaving directory '/build/reproducible-path/procenv-0.51' 307s make[1]: Leaving directory '/build/reproducible-path/procenv-0.51' 307s dh_installdocs 307s dh_installdocs: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_installchangelogs 307s dh_installchangelogs: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_installman 307s dh_installman: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_perl 307s dh_link 307s dh_link: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_strip_nondeterminism 307s dh_compress 307s dh_compress: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_fixperms 307s dh_missing 307s dh_missing: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_strip 307s dh_strip: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s cb5c617162ea727c6881f4687eb271524eba0a60 307s dh_makeshlibs 307s dh_makeshlibs: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_shlibdeps 307s dh_shlibdeps: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_installdeb 307s dh_installdeb: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_gencontrol 307s dh_gencontrol: warning: Compatibility levels before 10 are deprecated (level 9 in use) 307s dh_md5sums 307s dh_builddeb 307s dpkg-deb: building package 'procenv' in '../procenv_0.51-0.2_s390x.deb'. 307s dpkg-deb: building package 'procenv-dbgsym' in 'debian/.debhelper/scratch-space/build-procenv/procenv-dbgsym_0.51-0.2_s390x.deb'. 307s Renaming procenv-dbgsym_0.51-0.2_s390x.deb to procenv-dbgsym_0.51-0.2_s390x.ddeb 307s dpkg-genbuildinfo --build=binary -O../procenv_0.51-0.2_s390x.buildinfo 307s dpkg-genchanges --build=binary -O../procenv_0.51-0.2_s390x.changes 307s dpkg-genchanges: info: binary-only upload (no source code included) 307s dpkg-source --after-build . 307s dpkg-buildpackage: info: binary-only upload (no source included) 307s -------------------------------------------------------------------------------- 307s Build finished at 2025-02-20T00:17:11Z 307s 307s Finished 307s -------- 307s 307s I: Built successfully 307s 307s +------------------------------------------------------------------------------+ 307s | Changes Thu, 20 Feb 2025 00:17:11 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s 307s procenv_0.51-0.2_s390x.changes: 307s ------------------------------- 307s 307s Format: 1.8 307s Date: Fri, 11 Dec 2020 14:51:56 +0100 307s Source: procenv 307s Binary: procenv 307s Built-For-Profiles: noudeb 307s Architecture: s390x 307s Version: 0.51-0.2 307s Distribution: plucky 307s Urgency: medium 307s Maintainer: James Hunt 307s Changed-By: Gianfranco Costamagna 307s Description: 307s procenv - Utility to show process environment 307s Closes: 976833 307s Changes: 307s procenv (0.51-0.2) unstable; urgency=medium 307s . 307s * Non-maintainer upload. 307s * Change maintainer address to the one used to develop on github. (Closes: 307s #976833) 307s Checksums-Sha1: 307s e37c53a26e8dc9285c87911f2e3af9b4b272509f 159036 procenv-dbgsym_0.51-0.2_s390x.ddeb 307s b5728aed862e99316e59362a74e65734b627efbd 5956 procenv_0.51-0.2_s390x.buildinfo 307s 0ffa5a74e3e19cc9b61ed65bfaf1097d1a957c67 72754 procenv_0.51-0.2_s390x.deb 307s Checksums-Sha256: 307s 968f897d93bf321fba46c05b102ba38bfd83fc424a9c9bdb8601110481f9992e 159036 procenv-dbgsym_0.51-0.2_s390x.ddeb 307s 9e72985dbe6464d976cf2298509d9a0e3ee5a94dd327437c410b270ca69b266b 5956 procenv_0.51-0.2_s390x.buildinfo 307s 30cc9b17efa756d438eacaabf6ec3e87166eed6d8b20fe51907e101f61f1e5e3 72754 procenv_0.51-0.2_s390x.deb 307s Files: 307s 1de9e8cc07f4523663557a0d195b6dff 159036 debug optional procenv-dbgsym_0.51-0.2_s390x.ddeb 307s b8901b6ae379d03856607beadc7c1197 5956 utils optional procenv_0.51-0.2_s390x.buildinfo 307s d4cec0681f432bc09eec64270bbcf734 72754 utils optional procenv_0.51-0.2_s390x.deb 307s 307s +------------------------------------------------------------------------------+ 307s | Buildinfo Thu, 20 Feb 2025 00:17:11 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s Format: 1.0 307s Source: procenv 307s Binary: procenv procenv-dbgsym 307s Architecture: s390x 307s Version: 0.51-0.2 307s Checksums-Md5: 307s 1de9e8cc07f4523663557a0d195b6dff 159036 procenv-dbgsym_0.51-0.2_s390x.ddeb 307s d4cec0681f432bc09eec64270bbcf734 72754 procenv_0.51-0.2_s390x.deb 307s Checksums-Sha1: 307s e37c53a26e8dc9285c87911f2e3af9b4b272509f 159036 procenv-dbgsym_0.51-0.2_s390x.ddeb 307s 0ffa5a74e3e19cc9b61ed65bfaf1097d1a957c67 72754 procenv_0.51-0.2_s390x.deb 307s Checksums-Sha256: 307s 968f897d93bf321fba46c05b102ba38bfd83fc424a9c9bdb8601110481f9992e 159036 procenv-dbgsym_0.51-0.2_s390x.ddeb 307s 30cc9b17efa756d438eacaabf6ec3e87166eed6d8b20fe51907e101f61f1e5e3 72754 procenv_0.51-0.2_s390x.deb 307s Build-Origin: Ubuntu 307s Build-Architecture: s390x 307s Build-Date: Thu, 20 Feb 2025 00:17:11 +0000 307s Build-Path: /build/reproducible-path/procenv-0.51 307s Build-Tainted-By: 307s merged-usr-via-aliased-dirs 307s Installed-Build-Depends: 307s autoconf (= 2.72-3), 307s automake (= 1:1.17-3), 307s autopoint (= 0.23.1-1), 307s autotools-dev (= 20220109.1), 307s base-files (= 13.5ubuntu3), 307s base-passwd (= 3.6.6), 307s bash (= 5.2.37-1ubuntu1), 307s binutils (= 2.44-1ubuntu1), 307s binutils-common (= 2.44-1ubuntu1), 307s binutils-s390x-linux-gnu (= 2.44-1ubuntu1), 307s bsdextrautils (= 2.40.2-14ubuntu1), 307s bsdutils (= 1:2.40.2-14ubuntu1), 307s build-essential (= 12.10ubuntu1), 307s bzip2 (= 1.0.8-6), 307s check (= 0.15.2-3), 307s coreutils (= 9.5-1ubuntu1), 307s cpp (= 4:14.2.0-1ubuntu1), 307s cpp-14 (= 14.2.0-17ubuntu1), 307s cpp-14-s390x-linux-gnu (= 14.2.0-17ubuntu1), 307s cpp-s390x-linux-gnu (= 4:14.2.0-1ubuntu1), 307s dash (= 0.5.12-12ubuntu1), 307s debconf (= 1.5.87ubuntu1), 307s debhelper (= 13.24.1ubuntu2), 307s debianutils (= 5.21), 307s debugedit (= 1:5.1-2), 307s dh-autoreconf (= 20), 307s dh-strip-nondeterminism (= 1.14.1-2), 307s diffutils (= 1:3.10-2), 307s dpkg (= 1.22.11ubuntu4), 307s dpkg-dev (= 1.22.11ubuntu4), 307s dwz (= 0.15-1build6), 307s expat (= 2.6.4-1), 307s file (= 1:5.45-3build1), 307s findutils (= 4.10.0-3), 307s g++ (= 4:14.2.0-1ubuntu1), 307s g++-14 (= 14.2.0-17ubuntu1), 307s g++-14-s390x-linux-gnu (= 14.2.0-17ubuntu1), 307s g++-s390x-linux-gnu (= 4:14.2.0-1ubuntu1), 307s gcc (= 4:14.2.0-1ubuntu1), 307s gcc-14 (= 14.2.0-17ubuntu1), 307s gcc-14-base (= 14.2.0-17ubuntu1), 307s gcc-14-s390x-linux-gnu (= 14.2.0-17ubuntu1), 307s gcc-15-base (= 15-20250213-1ubuntu1), 307s gcc-s390x-linux-gnu (= 4:14.2.0-1ubuntu1), 307s gettext (= 0.23.1-1), 307s gettext-base (= 0.23.1-1), 307s grep (= 3.11-4build1), 307s groff-base (= 1.23.0-7), 307s gzip (= 1.13-1ubuntu2), 307s hostname (= 3.25), 307s init-system-helpers (= 1.68), 307s intltool-debian (= 0.35.0+20060710.6), 307s libacl1 (= 2.3.2-2), 307s libapparmor-dev (= 4.1.0~beta5-0ubuntu2), 307s libapparmor1 (= 4.1.0~beta5-0ubuntu2), 307s libarchive-zip-perl (= 1.68-1), 307s libasan8 (= 15-20250213-1ubuntu1), 307s libatomic1 (= 15-20250213-1ubuntu1), 307s libattr1 (= 1:2.5.2-2), 307s libaudit-common (= 1:4.0.2-2ubuntu1), 307s libaudit1 (= 1:4.0.2-2ubuntu1), 307s libbinutils (= 2.44-1ubuntu1), 307s libblkid1 (= 2.40.2-14ubuntu1), 307s libbz2-1.0 (= 1.0.8-6), 307s libc-bin (= 2.40-4ubuntu1), 307s libc-dev-bin (= 2.40-4ubuntu1), 307s libc6 (= 2.40-4ubuntu1), 307s libc6-dev (= 2.40-4ubuntu1), 307s libcap-dev (= 1:2.66-5ubuntu3), 307s libcap-ng0 (= 0.8.5-4), 307s libcap2 (= 1:2.66-5ubuntu3), 307s libcc1-0 (= 15-20250213-1ubuntu1), 307s libcrypt-dev (= 1:4.4.38-1), 307s libcrypt1 (= 1:4.4.38-1), 307s libctf-nobfd0 (= 2.44-1ubuntu1), 307s libctf0 (= 2.44-1ubuntu1), 307s libdb5.3t64 (= 5.3.28+dfsg2-9), 307s libdebconfclient0 (= 0.274ubuntu1), 307s libdebhelper-perl (= 13.24.1ubuntu2), 307s libdpkg-perl (= 1.22.11ubuntu4), 307s libdw1t64 (= 0.192-4), 307s libelf1t64 (= 0.192-4), 307s libexpat1 (= 2.6.4-1), 307s libfile-stripnondeterminism-perl (= 1.14.1-2), 307s libgcc-14-dev (= 14.2.0-17ubuntu1), 307s libgcc-s1 (= 15-20250213-1ubuntu1), 307s libgdbm-compat4t64 (= 1.24-2), 307s libgdbm6t64 (= 1.24-2), 307s libgmp10 (= 2:6.3.0+dfsg-2ubuntu7), 307s libgomp1 (= 15-20250213-1ubuntu1), 307s libisl23 (= 0.27-1), 307s libitm1 (= 15-20250213-1ubuntu1), 307s libjansson4 (= 2.14-2build2), 307s liblzma5 (= 5.6.3-1), 307s libmagic-mgc (= 1:5.45-3build1), 307s libmagic1t64 (= 1:5.45-3build1), 307s libmd0 (= 1.1.0-2build2), 307s libmount1 (= 2.40.2-14ubuntu1), 307s libmpc3 (= 1.3.1-1build2), 307s libmpfr6 (= 4.2.1-1build2), 307s libpam-modules (= 1.5.3-7ubuntu4), 307s libpam-modules-bin (= 1.5.3-7ubuntu4), 307s libpam-runtime (= 1.5.3-7ubuntu4), 307s libpam0g (= 1.5.3-7ubuntu4), 307s libpcre2-16-0 (= 10.42-4ubuntu3), 307s libpcre2-32-0 (= 10.42-4ubuntu3), 307s libpcre2-8-0 (= 10.42-4ubuntu3), 307s libpcre2-dev (= 10.42-4ubuntu3), 307s libpcre2-posix3 (= 10.42-4ubuntu3), 307s libperl5.40 (= 5.40.0-8), 307s libpipeline1 (= 1.5.8-1), 307s libpkgconf3 (= 1.8.1-4), 307s libseccomp2 (= 2.5.5-1ubuntu5), 307s libselinux1 (= 3.7-3ubuntu2), 307s libselinux1-dev (= 3.7-3ubuntu2), 307s libsepol-dev (= 3.7-1), 307s libsepol2 (= 3.7-1), 307s libsframe1 (= 2.44-1ubuntu1), 307s libsmartcols1 (= 2.40.2-14ubuntu1), 307s libssl3t64 (= 3.4.0-1ubuntu2), 307s libstdc++-14-dev (= 14.2.0-17ubuntu1), 307s libstdc++6 (= 15-20250213-1ubuntu1), 307s libsubunit-dev (= 1.4.2-3build1), 307s libsubunit0 (= 1.4.2-3build1), 307s libsystemd0 (= 257.2-3ubuntu1), 307s libtinfo6 (= 6.5+20250125-2), 307s libtool (= 2.5.4-3build1), 307s libubsan1 (= 15-20250213-1ubuntu1), 307s libuchardet0 (= 0.0.8-1build1), 307s libudev1 (= 257.2-3ubuntu1), 307s libunistring5 (= 1.3-1), 307s libuuid1 (= 2.40.2-14ubuntu1), 307s libxml2 (= 2.12.7+dfsg+really2.9.14-0.2ubuntu3), 307s libzstd1 (= 1.5.6+dfsg-2), 307s linux-libc-dev (= 6.12.0-15.15), 307s lto-disabled-list (= 55), 307s m4 (= 1.4.19-5), 307s make (= 4.4.1-1), 307s man-db (= 2.13.0-1), 307s mawk (= 1.3.4.20250131-1), 307s ncurses-base (= 6.5+20250125-2), 307s ncurses-bin (= 6.5+20250125-2), 307s openssl-provider-legacy (= 3.4.0-1ubuntu2), 307s patch (= 2.7.6-7build3), 307s perl (= 5.40.0-8), 307s perl-base (= 5.40.0-8), 307s perl-modules-5.40 (= 5.40.0-8), 307s pkg-config (= 1.8.1-4), 307s pkgconf (= 1.8.1-4), 307s pkgconf-bin (= 1.8.1-4), 307s po-debconf (= 1.0.21+nmu1), 307s rpcsvc-proto (= 1.4.2-0ubuntu7), 307s sed (= 4.9-2build1), 307s sensible-utils (= 0.0.24), 307s sysvinit-utils (= 3.14-1ubuntu1), 307s tar (= 1.35+dfsg-3.1), 307s util-linux (= 2.40.2-14ubuntu1), 307s xz-utils (= 5.6.3-1), 307s zlib1g (= 1:1.3.dfsg+really1.3.1-1ubuntu1) 307s Environment: 307s DEB_BUILD_OPTIONS="parallel=2" 307s DEB_BUILD_PROFILES="noudeb" 307s LANG="C.UTF-8" 307s LC_COLLATE="C.UTF-8" 307s LC_CTYPE="C.UTF-8" 307s SOURCE_DATE_EPOCH="1607694716" 307s 307s 307s +------------------------------------------------------------------------------+ 307s | Package contents Thu, 20 Feb 2025 00:17:11 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s 307s procenv_0.51-0.2_s390x.deb 307s -------------------------- 307s 307s new Debian package, version 2.0. 307s size 72754 bytes: control archive=718 bytes. 307s 571 bytes, 14 lines control 307s 383 bytes, 6 lines md5sums 307s Package: procenv 307s Version: 0.51-0.2 307s Architecture: s390x 307s Maintainer: James Hunt 307s Installed-Size: 206 307s Depends: libc6 (>= 2.38), libcap2 (>= 1:2.10), libselinux1 (>= 3.1~) 307s Section: utils 307s Priority: optional 307s Homepage: https://github.com/jamesodhunt/procenv 307s Description: Utility to show process environment 307s This package contains a command-line tool that displays as much 307s detail about itself and its environment as possible. It can be 307s used as a test tool, to understand the type of environment a 307s process runs in, and for comparing system environments. 307s 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./ 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/ 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/bin/ 307s -rwxr-xr-x root/root 185872 2020-12-11 13:51 ./usr/bin/procenv 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/ 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/doc/ 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/doc/procenv/ 307s -rw-r--r-- root/root 3862 2019-08-02 20:40 ./usr/share/doc/procenv/NEWS.gz 307s lrwxrwxrwx root/root 0 2020-12-11 13:51 ./usr/share/doc/procenv/README -> README.rst 307s -rw-r--r-- root/root 2844 2019-08-02 20:40 ./usr/share/doc/procenv/TODO 307s -rw-r--r-- root/root 649 2020-12-11 13:51 ./usr/share/doc/procenv/changelog.Debian.gz 307s -rw-r--r-- root/root 1140 2020-08-11 13:14 ./usr/share/doc/procenv/copyright 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/man/ 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/man/man1/ 307s -rw-r--r-- root/root 4021 2020-12-11 13:51 ./usr/share/man/man1/procenv.1.gz 307s 307s 307s lintian 307s ------- 307s 307s 307s Setup apt archive 307s ----------------- 307s 307s Merged Build-Depends: lintian 307s Filtered Build-Depends: lintian 307s dpkg-deb: building package 'sbuild-build-depends-lintian-dummy' in '/build/reproducible-path/resolver-oC6JDK/apt_archive/sbuild-build-depends-lintian-dummy.deb'. 307s Ign:1 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ InRelease 307s Get:2 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Release [615 B] 307s Ign:3 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Release.gpg 307s Get:4 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Sources [2094 B] 307s Get:5 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ Packages [1976 B] 307s Fetched 4685 B in 0s (0 B/s) 307s Reading package lists... 307s Reading package lists... 307s 307s Install lintian build dependencies (apt-based resolver) 307s ------------------------------------------------------- 307s 307s Installing build dependencies 307s Reading package lists... 307s Building dependency tree... 307s Reading state information... 307s The following additional packages will be installed: 307s appstream ca-certificates diffstat gpg gpgconf iso-codes libaliased-perl 307s libappstream5 libapt-pkg-perl libapt-pkg6.0t64 libb-hooks-endofscope-perl 307s libb-hooks-op-check-perl libberkeleydb-perl libbrotli1 libcapture-tiny-perl 307s libcgi-pm-perl libclass-data-inheritable-perl libclass-inspector-perl 307s libclass-method-modifiers-perl libclass-xsaccessor-perl libclone-perl 307s libconfig-tiny-perl libconst-fast-perl libcpanel-json-xs-perl 307s libcurl3t64-gnutls libdata-dpath-perl libdata-messagepack-perl 307s libdata-optlist-perl libdata-validate-domain-perl libdata-validate-ip-perl 307s libdata-validate-uri-perl libdevel-callchecker-perl libdevel-size-perl 307s libdevel-stacktrace-perl libdynaloader-functions-perl 307s libemail-address-xs-perl libencode-locale-perl libexception-class-perl 307s libffi8 libfile-basedir-perl libfile-find-rule-perl libfile-listing-perl 307s libfile-sharedir-perl libfont-ttf-perl libglib2.0-0t64 libgnutls30t64 307s libgssapi-krb5-2 libhogweed6t64 libhtml-form-perl 307s libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl 307s libhtml-tokeparser-simple-perl libhtml-tree-perl libhttp-cookies-perl 307s libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libidn2-0 307s libimport-into-perl libio-html-perl libio-interactive-perl 307s libio-socket-ssl-perl libio-string-perl libipc-run3-perl 307s libipc-system-simple-perl libiterator-perl libiterator-util-perl 307s libjson-maybexs-perl libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 307s libldap-common libldap2 liblist-compare-perl liblist-someutils-perl 307s liblist-utilsby-perl liblwp-mediatypes-perl liblwp-protocol-https-perl 307s liblzo2-2 libmarkdown2 libmldbm-perl libmodule-implementation-perl 307s libmodule-runtime-perl libmoo-perl libmoox-aliases-perl libmouse-perl 307s libnamespace-clean-perl libnet-domain-tld-perl libnet-http-perl 307s libnet-ipv6addr-perl libnet-netmask-perl libnet-ssleay-perl 307s libnetaddr-ip-perl libnettle8t64 libnghttp2-14 libnumber-compare-perl 307s libp11-kit0 libpackage-stash-perl libparams-classify-perl 307s libparams-util-perl libpath-tiny-perl libperlio-gzip-perl 307s libperlio-utf8-strict-perl libproc-processtable-perl libpsl5t64 307s libreadline8t64 libregexp-wildcards-perl librole-tiny-perl librtmp1 307s libsasl2-2 libsasl2-modules-db libsereal-decoder-perl libsereal-encoder-perl 307s libsort-versions-perl libsqlite3-0 libssh2-1t64 libstemmer0d 307s libstrictures-perl libsub-exporter-perl libsub-exporter-progressive-perl 307s libsub-identify-perl libsub-install-perl libsub-name-perl libsub-quote-perl 307s libsyntax-keyword-try-perl libtasn1-6 libterm-readkey-perl 307s libtext-charwidth-perl libtext-glob-perl libtext-levenshteinxs-perl 307s libtext-markdown-discount-perl libtext-wrapi18n-perl libtext-xslate-perl 307s libtime-duration-perl libtime-moment-perl libtimedate-perl libtry-tiny-perl 307s libunicode-utf8-perl liburi-perl libvariable-magic-perl 307s libwww-mechanize-perl libwww-perl libwww-robotrules-perl libxml-libxml-perl 307s libxml-namespacesupport-perl libxml-sax-base-perl libxml-sax-perl libxmlb2 307s libxs-parse-keyword-perl libyaml-0-2 libyaml-libyaml-perl lintian lzip lzop 307s netbase openssl patchutils perl-openssl-defaults readline-common 307s shared-mime-info t1utils ucf unzip 307s Suggested packages: 307s apt-config-icons gnupg keyboxd isoquery libxml-parser-perl 307s low-memory-monitor gnutls-bin krb5-doc krb5-user libdata-dump-perl 307s libio-compress-brotli-perl libcrypt-ssleay-perl libscalar-number-perl 307s libbareword-filehandles-perl libindirect-perl libmultidimensional-perl 307s libxstring-perl libbusiness-isbn-perl libmime-base32-perl 307s libregexp-ipv6-perl libauthen-ntlm-perl binutils-multiarch 307s libtext-template-perl readline-doc zip 307s Recommended packages: 307s dirmngr gpg-agent libcgi-fast-perl libglib2.0-data xdg-user-dirs 307s libhtml-format-perl krb5-locales liblist-someutils-xs-perl 307s libfreezethaw-perl libmath-base85-perl libsocket6-perl 307s libpackage-stash-xs-perl publicsuffix libsasl2-modules libdata-dump-perl 307s libhttp-daemon-perl libmailtools-perl libxml-sax-expat-perl 307s The following NEW packages will be installed: 307s appstream ca-certificates diffstat gpg gpgconf iso-codes libaliased-perl 307s libappstream5 libapt-pkg-perl libapt-pkg6.0t64 libb-hooks-endofscope-perl 307s libb-hooks-op-check-perl libberkeleydb-perl libbrotli1 libcapture-tiny-perl 307s libcgi-pm-perl libclass-data-inheritable-perl libclass-inspector-perl 307s libclass-method-modifiers-perl libclass-xsaccessor-perl libclone-perl 307s libconfig-tiny-perl libconst-fast-perl libcpanel-json-xs-perl 307s libcurl3t64-gnutls libdata-dpath-perl libdata-messagepack-perl 307s libdata-optlist-perl libdata-validate-domain-perl libdata-validate-ip-perl 307s libdata-validate-uri-perl libdevel-callchecker-perl libdevel-size-perl 307s libdevel-stacktrace-perl libdynaloader-functions-perl 307s libemail-address-xs-perl libencode-locale-perl libexception-class-perl 307s libffi8 libfile-basedir-perl libfile-find-rule-perl libfile-listing-perl 307s libfile-sharedir-perl libfont-ttf-perl libglib2.0-0t64 libgnutls30t64 307s libgssapi-krb5-2 libhogweed6t64 libhtml-form-perl 307s libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl 307s libhtml-tokeparser-simple-perl libhtml-tree-perl libhttp-cookies-perl 307s libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libidn2-0 307s libimport-into-perl libio-html-perl libio-interactive-perl 307s libio-socket-ssl-perl libio-string-perl libipc-run3-perl 307s libipc-system-simple-perl libiterator-perl libiterator-util-perl 307s libjson-maybexs-perl libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 307s libldap-common libldap2 liblist-compare-perl liblist-someutils-perl 307s liblist-utilsby-perl liblwp-mediatypes-perl liblwp-protocol-https-perl 307s liblzo2-2 libmarkdown2 libmldbm-perl libmodule-implementation-perl 307s libmodule-runtime-perl libmoo-perl libmoox-aliases-perl libmouse-perl 307s libnamespace-clean-perl libnet-domain-tld-perl libnet-http-perl 307s libnet-ipv6addr-perl libnet-netmask-perl libnet-ssleay-perl 307s libnetaddr-ip-perl libnettle8t64 libnghttp2-14 libnumber-compare-perl 307s libp11-kit0 libpackage-stash-perl libparams-classify-perl 307s libparams-util-perl libpath-tiny-perl libperlio-gzip-perl 307s libperlio-utf8-strict-perl libproc-processtable-perl libpsl5t64 307s libreadline8t64 libregexp-wildcards-perl librole-tiny-perl librtmp1 307s libsasl2-2 libsasl2-modules-db libsereal-decoder-perl libsereal-encoder-perl 307s libsort-versions-perl libsqlite3-0 libssh2-1t64 libstemmer0d 307s libstrictures-perl libsub-exporter-perl libsub-exporter-progressive-perl 307s libsub-identify-perl libsub-install-perl libsub-name-perl libsub-quote-perl 307s libsyntax-keyword-try-perl libtasn1-6 libterm-readkey-perl 307s libtext-charwidth-perl libtext-glob-perl libtext-levenshteinxs-perl 307s libtext-markdown-discount-perl libtext-wrapi18n-perl libtext-xslate-perl 307s libtime-duration-perl libtime-moment-perl libtimedate-perl libtry-tiny-perl 307s libunicode-utf8-perl liburi-perl libvariable-magic-perl 307s libwww-mechanize-perl libwww-perl libwww-robotrules-perl libxml-libxml-perl 307s libxml-namespacesupport-perl libxml-sax-base-perl libxml-sax-perl libxmlb2 307s libxs-parse-keyword-perl libyaml-0-2 libyaml-libyaml-perl lintian lzip lzop 307s netbase openssl patchutils perl-openssl-defaults readline-common 307s sbuild-build-depends-lintian-dummy shared-mime-info t1utils ucf unzip 307s 0 upgraded, 166 newly installed, 0 to remove and 0 not upgraded. 307s Need to get 20.9 MB of archives. 307s After this operation, 78.5 MB of additional disk space will be used. 307s Get:1 copy:/build/reproducible-path/resolver-oC6JDK/apt_archive ./ sbuild-build-depends-lintian-dummy 0.invalid.0 [626 B] 307s Get:2 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x openssl s390x 3.4.0-1ubuntu2 [1181 kB] 307s Get:3 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x ca-certificates all 20241223 [165 kB] 307s Get:4 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x iso-codes all 4.17.0-1 [3612 kB] 307s Get:5 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libapt-pkg6.0t64 s390x 2.9.29 [1105 kB] 307s Get:6 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libffi8 s390x 3.4.7-1 [23.1 kB] 307s Get:7 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libglib2.0-0t64 s390x 2.83.3-2 [1583 kB] 307s Get:8 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnettle8t64 s390x 3.10.1-1 [210 kB] 307s Get:9 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhogweed6t64 s390x 3.10.1-1 [204 kB] 307s Get:10 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libidn2-0 s390x 2.3.7-2build2 [66.7 kB] 307s Get:11 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 307s Get:12 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 307s Get:13 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libgnutls30t64 s390x 3.8.9-2ubuntu1 [955 kB] 307s Get:14 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libkrb5support0 s390x 1.21.3-4ubuntu1 [35.3 kB] 307s Get:15 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libk5crypto3 s390x 1.21.3-4ubuntu1 [90.0 kB] 307s Get:16 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libkeyutils1 s390x 1.6.3-4ubuntu2 [9960 B] 307s Get:17 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libkrb5-3 s390x 1.21.3-4ubuntu1 [355 kB] 307s Get:18 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libgssapi-krb5-2 s390x 1.21.3-4ubuntu1 [149 kB] 307s Get:19 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x readline-common all 8.2-6 [56.5 kB] 307s Get:20 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libreadline8t64 s390x 8.2-6 [170 kB] 307s Get:21 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsqlite3-0 s390x 3.46.1-1 [746 kB] 307s Get:22 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtext-charwidth-perl s390x 0.04-11build4 [9646 B] 307s Get:23 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtext-wrapi18n-perl all 0.06-10 [7694 B] 307s Get:24 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libyaml-0-2 s390x 0.2.5-2 [54.8 kB] 307s Get:25 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x netbase all 6.4 [13.1 kB] 307s Get:26 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x shared-mime-info s390x 2.4-5 [474 kB] 307s Get:27 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x ucf all 3.0049 [43.3 kB] 307s Get:28 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnghttp2-14 s390x 1.64.0-1 [77.2 kB] 307s Get:29 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpsl5t64 s390x 0.21.2-1.1build1 [57.7 kB] 307s Get:30 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libbrotli1 s390x 1.1.0-2build3 [378 kB] 307s Get:31 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsasl2-modules-db s390x 2.1.28+dfsg1-8build1 [21.1 kB] 307s Get:32 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsasl2-2 s390x 2.1.28+dfsg1-8build1 [56.8 kB] 307s Get:33 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libldap-common all 2.6.9+dfsg-1~exp2ubuntu1 [33.2 kB] 307s Get:34 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libldap2 s390x 2.6.9+dfsg-1~exp2ubuntu1 [204 kB] 307s Get:35 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x librtmp1 s390x 2.4+20151223.gitfa8646d.1-2build7 [58.4 kB] 307s Get:36 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libssh2-1t64 s390x 1.11.1-1 [142 kB] 307s Get:37 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libcurl3t64-gnutls s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [393 kB] 307s Get:38 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libstemmer0d s390x 2.2.0-4build1 [174 kB] 307s Get:39 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxmlb2 s390x 0.3.21-1 [69.2 kB] 307s Get:40 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libappstream5 s390x 1.0.4-1 [236 kB] 307s Get:41 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x appstream s390x 1.0.4-1 [72.2 kB] 307s Get:42 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x diffstat s390x 1.67-1 [33.1 kB] 307s Get:43 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x gpgconf s390x 2.4.4-2ubuntu22 [110 kB] 307s Get:44 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x gpg s390x 2.4.4-2ubuntu22 [591 kB] 307s Get:45 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libaliased-perl all 0.34-3 [12.8 kB] 307s Get:46 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libapt-pkg-perl s390x 0.1.40build8 [70.7 kB] 307s Get:47 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libb-hooks-op-check-perl s390x 0.22-3build2 [9566 B] 307s Get:48 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdynaloader-functions-perl all 0.004-1 [11.4 kB] 307s Get:49 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdevel-callchecker-perl s390x 0.009-1build1 [14.2 kB] 307s Get:50 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libparams-classify-perl s390x 0.015-2build6 [20.6 kB] 307s Get:51 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmodule-runtime-perl all 0.016-2 [16.4 kB] 307s Get:52 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtry-tiny-perl all 0.32-1 [21.2 kB] 307s Get:53 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmodule-implementation-perl all 0.09-2 [12.0 kB] 307s Get:54 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsub-exporter-progressive-perl all 0.001013-3 [6718 B] 307s Get:55 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libvariable-magic-perl s390x 0.64-1build1 [36.4 kB] 307s Get:56 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libb-hooks-endofscope-perl all 0.28-1 [15.8 kB] 307s Get:57 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libberkeleydb-perl s390x 0.66-1 [115 kB] 307s Get:58 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libcapture-tiny-perl all 0.50-1 [20.7 kB] 307s Get:59 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhtml-tagset-perl all 3.24-1 [14.1 kB] 307s Get:60 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liburi-perl all 5.30-1 [94.4 kB] 307s Get:61 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhtml-parser-perl s390x 3.83-1build1 [87.8 kB] 307s Get:62 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libcgi-pm-perl all 4.67-1 [185 kB] 307s Get:63 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libclass-data-inheritable-perl all 0.10-1 [8038 B] 307s Get:64 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libclass-inspector-perl all 1.36-3 [15.4 kB] 307s Get:65 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libclass-method-modifiers-perl all 2.15-1 [16.1 kB] 307s Get:66 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libclass-xsaccessor-perl s390x 1.19-4build5 [34.2 kB] 307s Get:67 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libclone-perl s390x 0.47-1 [10.7 kB] 307s Get:68 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libconfig-tiny-perl all 2.30-1 [14.7 kB] 307s Get:69 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libparams-util-perl s390x 1.102-3build1 [21.3 kB] 307s Get:70 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsub-install-perl all 0.929-1 [9764 B] 307s Get:71 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdata-optlist-perl all 0.114-1 [9708 B] 307s Get:72 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsub-exporter-perl all 0.990-1 [49.0 kB] 307s Get:73 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libconst-fast-perl all 0.014-2 [8034 B] 307s Get:74 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libcpanel-json-xs-perl s390x 4.39-1 [118 kB] 307s Get:75 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdevel-stacktrace-perl all 2.0500-1 [22.1 kB] 307s Get:76 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libexception-class-perl all 1.45-1 [28.6 kB] 307s Get:77 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libiterator-perl all 0.03+ds1-2 [18.8 kB] 307s Get:78 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libiterator-util-perl all 0.02+ds1-2 [14.1 kB] 307s Get:79 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdata-dpath-perl all 0.60-1 [37.3 kB] 307s Get:80 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdata-messagepack-perl s390x 1.02-1build5 [32.3 kB] 307s Get:81 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnet-domain-tld-perl all 1.75-4 [29.0 kB] 307s Get:82 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdata-validate-domain-perl all 0.15-1 [10.4 kB] 307s Get:83 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnet-ipv6addr-perl all 1.02-1 [21.0 kB] 307s Get:84 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnet-netmask-perl all 2.0002-2 [24.8 kB] 307s Get:85 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnetaddr-ip-perl s390x 4.079+dfsg-2build5 [80.6 kB] 307s Get:86 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdata-validate-ip-perl all 0.31-1 [17.2 kB] 307s Get:87 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdata-validate-uri-perl all 0.07-3 [10.8 kB] 307s Get:88 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libemail-address-xs-perl s390x 1.05-1build5 [29.3 kB] 307s Get:89 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libencode-locale-perl all 1.05-3 [11.6 kB] 307s Get:90 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libipc-system-simple-perl all 1.30-2 [22.3 kB] 307s Get:91 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libfile-basedir-perl all 0.09-2 [14.4 kB] 307s Get:92 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnumber-compare-perl all 0.03-3 [5974 B] 307s Get:93 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtext-glob-perl all 0.11-3 [6780 B] 307s Get:94 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libfile-find-rule-perl all 0.34-3 [24.4 kB] 307s Get:95 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtimedate-perl all 2.3300-2 [34.0 kB] 307s Get:96 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhttp-date-perl all 6.06-1 [10.2 kB] 307s Get:97 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libfile-listing-perl all 6.16-1 [11.3 kB] 307s Get:98 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libfile-sharedir-perl all 1.118-3 [14.0 kB] 307s Get:99 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libio-string-perl all 1.08-4 [11.1 kB] 307s Get:100 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libfont-ttf-perl all 1.06-2 [323 kB] 307s Get:101 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libio-html-perl all 1.004-3 [15.9 kB] 307s Get:102 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liblwp-mediatypes-perl all 6.04-2 [20.1 kB] 307s Get:103 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhttp-message-perl all 7.00-2ubuntu1 [75.9 kB] 307s Get:104 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhtml-form-perl all 6.12-1 [31.1 kB] 307s Get:105 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhtml-html5-entities-perl all 0.004-3 [21.6 kB] 307s Get:106 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhtml-tree-perl all 5.07-3 [200 kB] 307s Get:107 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhttp-cookies-perl all 6.11-1 [18.2 kB] 307s Get:108 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhttp-negotiate-perl all 6.01-2 [12.4 kB] 307s Get:109 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x perl-openssl-defaults s390x 7build3 [6628 B] 307s Get:110 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnet-ssleay-perl s390x 1.94-2 [319 kB] 307s Get:111 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libio-socket-ssl-perl all 2.089-1 [200 kB] 307s Get:112 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnet-http-perl all 6.23-1 [22.3 kB] 307s Get:113 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liblwp-protocol-https-perl all 6.14-1 [9040 B] 307s Get:114 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libwww-robotrules-perl all 6.02-1 [12.6 kB] 307s Get:115 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libwww-perl all 6.77-1 [138 kB] 307s Get:116 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libhtml-tokeparser-simple-perl all 3.16-4 [38.0 kB] 307s Get:117 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libimport-into-perl all 1.002005-2 [10.7 kB] 307s Get:118 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libio-interactive-perl all 1.026-1 [10.8 kB] 307s Get:119 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libjson-maybexs-perl all 1.004008-1 [11.1 kB] 307s Get:120 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liblist-compare-perl all 0.55-2 [62.9 kB] 307s Get:121 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liblist-someutils-perl all 0.59-1 [30.4 kB] 307s Get:122 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liblist-utilsby-perl all 0.12-2 [14.9 kB] 307s Get:123 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x liblzo2-2 s390x 2.10-3 [64.1 kB] 307s Get:124 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmarkdown2 s390x 2.2.7-2.1 [40.3 kB] 307s Get:125 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmldbm-perl all 2.05-4 [16.0 kB] 307s Get:126 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x librole-tiny-perl all 2.002004-1 [16.3 kB] 307s Get:127 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsub-quote-perl all 2.006008-1ubuntu1 [20.7 kB] 307s Get:128 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmoo-perl all 2.005005-1 [47.4 kB] 307s Get:129 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libstrictures-perl all 2.000006-1 [16.3 kB] 307s Get:130 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmoox-aliases-perl all 0.001006-2 [6796 B] 307s Get:131 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libmouse-perl s390x 2.5.11-1build1 [134 kB] 307s Get:132 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpackage-stash-perl all 0.40-1 [19.5 kB] 307s Get:133 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsub-identify-perl s390x 0.14-3build4 [10.0 kB] 307s Get:134 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsub-name-perl s390x 0.28-1 [10.8 kB] 307s Get:135 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libnamespace-clean-perl all 0.27-2 [14.0 kB] 307s Get:136 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libpath-tiny-perl all 0.146-1 [47.5 kB] 307s Get:137 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libperlio-gzip-perl s390x 0.20-1build5 [14.8 kB] 307s Get:138 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libperlio-utf8-strict-perl s390x 0.010-1build4 [11.2 kB] 307s Get:139 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libproc-processtable-perl s390x 0.636-1build4 [36.6 kB] 307s Get:140 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libregexp-wildcards-perl all 1.05-3 [12.9 kB] 307s Get:141 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsereal-decoder-perl s390x 5.004+ds-1build4 [107 kB] 307s Get:142 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsereal-encoder-perl s390x 5.004+ds-1build4 [112 kB] 307s Get:143 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsort-versions-perl all 1.62-3 [7378 B] 307s Get:144 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxs-parse-keyword-perl s390x 0.48-2 [63.5 kB] 307s Get:145 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libsyntax-keyword-try-perl s390x 0.30-1 [24.8 kB] 307s Get:146 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libterm-readkey-perl s390x 2.38-2build5 [23.1 kB] 307s Get:147 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtext-levenshteinxs-perl s390x 0.03-5build5 [8350 B] 307s Get:148 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtext-markdown-discount-perl s390x 0.18-1 [12.4 kB] 307s Get:149 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtext-xslate-perl s390x 3.5.9-2build1 [163 kB] 307s Get:150 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtime-duration-perl all 1.21-2 [12.3 kB] 307s Get:151 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libtime-moment-perl s390x 0.44-2build5 [75.5 kB] 307s Get:152 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libunicode-utf8-perl s390x 0.62-2build4 [18.8 kB] 307s Get:153 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libwww-mechanize-perl all 2.18-1ubuntu1 [93.1 kB] 307s Get:154 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxml-namespacesupport-perl all 1.12-2 [13.5 kB] 307s Get:155 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxml-sax-base-perl all 1.09-3 [18.9 kB] 307s Get:156 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxml-sax-perl all 1.02+dfsg-4 [52.4 kB] 307s Get:157 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libxml-libxml-perl s390x 2.0207+dfsg+really+2.0134-5build1 [312 kB] 307s Get:158 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libyaml-libyaml-perl s390x 0.903.0+ds-1 [32.8 kB] 307s Get:159 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libdevel-size-perl s390x 0.84-1build1 [20.0 kB] 307s Get:160 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x libipc-run3-perl all 0.049-1 [28.8 kB] 307s Get:161 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x lzip s390x 1.25-1 [89.5 kB] 307s Get:162 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x lzop s390x 1.04-2build3 [84.3 kB] 307s Get:163 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x patchutils s390x 0.4.2-1build3 [79.2 kB] 307s Get:164 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x t1utils s390x 1.41-4build3 [65.6 kB] 307s Get:165 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x unzip s390x 6.0-28ubuntu6 [186 kB] 307s Get:166 http://ports.ubuntu.com/ubuntu-ports plucky/main s390x lintian all 2.121.1ubuntu1 [1073 kB] 307s Preconfiguring packages ... 307s Fetched 20.9 MB in 3s (6526 kB/s) 307s Selecting previously unselected package openssl. 307s (Reading database ... 12546 files and directories currently installed.) 307s Preparing to unpack .../000-openssl_3.4.0-1ubuntu2_s390x.deb ... 307s Unpacking openssl (3.4.0-1ubuntu2) ... 307s Selecting previously unselected package ca-certificates. 307s Preparing to unpack .../001-ca-certificates_20241223_all.deb ... 307s Unpacking ca-certificates (20241223) ... 307s Selecting previously unselected package iso-codes. 307s Preparing to unpack .../002-iso-codes_4.17.0-1_all.deb ... 307s Unpacking iso-codes (4.17.0-1) ... 307s Selecting previously unselected package libapt-pkg6.0t64:s390x. 307s Preparing to unpack .../003-libapt-pkg6.0t64_2.9.29_s390x.deb ... 307s Unpacking libapt-pkg6.0t64:s390x (2.9.29) ... 307s Selecting previously unselected package libffi8:s390x. 307s Preparing to unpack .../004-libffi8_3.4.7-1_s390x.deb ... 307s Unpacking libffi8:s390x (3.4.7-1) ... 307s Selecting previously unselected package libglib2.0-0t64:s390x. 307s Preparing to unpack .../005-libglib2.0-0t64_2.83.3-2_s390x.deb ... 307s Unpacking libglib2.0-0t64:s390x (2.83.3-2) ... 307s Selecting previously unselected package libnettle8t64:s390x. 307s Preparing to unpack .../006-libnettle8t64_3.10.1-1_s390x.deb ... 307s Unpacking libnettle8t64:s390x (3.10.1-1) ... 307s Selecting previously unselected package libhogweed6t64:s390x. 307s Preparing to unpack .../007-libhogweed6t64_3.10.1-1_s390x.deb ... 307s Unpacking libhogweed6t64:s390x (3.10.1-1) ... 307s Selecting previously unselected package libidn2-0:s390x. 307s Preparing to unpack .../008-libidn2-0_2.3.7-2build2_s390x.deb ... 307s Unpacking libidn2-0:s390x (2.3.7-2build2) ... 307s Selecting previously unselected package libp11-kit0:s390x. 307s Preparing to unpack .../009-libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 307s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) ... 307s Selecting previously unselected package libtasn1-6:s390x. 307s Preparing to unpack .../010-libtasn1-6_4.20.0-2_s390x.deb ... 307s Unpacking libtasn1-6:s390x (4.20.0-2) ... 307s Selecting previously unselected package libgnutls30t64:s390x. 307s Preparing to unpack .../011-libgnutls30t64_3.8.9-2ubuntu1_s390x.deb ... 307s Unpacking libgnutls30t64:s390x (3.8.9-2ubuntu1) ... 307s Selecting previously unselected package libkrb5support0:s390x. 307s Preparing to unpack .../012-libkrb5support0_1.21.3-4ubuntu1_s390x.deb ... 307s Unpacking libkrb5support0:s390x (1.21.3-4ubuntu1) ... 307s Selecting previously unselected package libk5crypto3:s390x. 307s Preparing to unpack .../013-libk5crypto3_1.21.3-4ubuntu1_s390x.deb ... 307s Unpacking libk5crypto3:s390x (1.21.3-4ubuntu1) ... 307s Selecting previously unselected package libkeyutils1:s390x. 307s Preparing to unpack .../014-libkeyutils1_1.6.3-4ubuntu2_s390x.deb ... 307s Unpacking libkeyutils1:s390x (1.6.3-4ubuntu2) ... 307s Selecting previously unselected package libkrb5-3:s390x. 307s Preparing to unpack .../015-libkrb5-3_1.21.3-4ubuntu1_s390x.deb ... 307s Unpacking libkrb5-3:s390x (1.21.3-4ubuntu1) ... 307s Selecting previously unselected package libgssapi-krb5-2:s390x. 307s Preparing to unpack .../016-libgssapi-krb5-2_1.21.3-4ubuntu1_s390x.deb ... 307s Unpacking libgssapi-krb5-2:s390x (1.21.3-4ubuntu1) ... 307s Selecting previously unselected package readline-common. 307s Preparing to unpack .../017-readline-common_8.2-6_all.deb ... 307s Unpacking readline-common (8.2-6) ... 307s Selecting previously unselected package libreadline8t64:s390x. 307s Preparing to unpack .../018-libreadline8t64_8.2-6_s390x.deb ... 307s Adding 'diversion of /lib/s390x-linux-gnu/libhistory.so.8 to /lib/s390x-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64' 307s Adding 'diversion of /lib/s390x-linux-gnu/libhistory.so.8.2 to /lib/s390x-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64' 307s Adding 'diversion of /lib/s390x-linux-gnu/libreadline.so.8 to /lib/s390x-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64' 307s Adding 'diversion of /lib/s390x-linux-gnu/libreadline.so.8.2 to /lib/s390x-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64' 307s Unpacking libreadline8t64:s390x (8.2-6) ... 307s Selecting previously unselected package libsqlite3-0:s390x. 307s Preparing to unpack .../019-libsqlite3-0_3.46.1-1_s390x.deb ... 307s Unpacking libsqlite3-0:s390x (3.46.1-1) ... 307s Selecting previously unselected package libtext-charwidth-perl:s390x. 307s Preparing to unpack .../020-libtext-charwidth-perl_0.04-11build4_s390x.deb ... 307s Unpacking libtext-charwidth-perl:s390x (0.04-11build4) ... 307s Selecting previously unselected package libtext-wrapi18n-perl. 307s Preparing to unpack .../021-libtext-wrapi18n-perl_0.06-10_all.deb ... 307s Unpacking libtext-wrapi18n-perl (0.06-10) ... 307s Selecting previously unselected package libyaml-0-2:s390x. 307s Preparing to unpack .../022-libyaml-0-2_0.2.5-2_s390x.deb ... 307s Unpacking libyaml-0-2:s390x (0.2.5-2) ... 307s Selecting previously unselected package netbase. 307s Preparing to unpack .../023-netbase_6.4_all.deb ... 307s Unpacking netbase (6.4) ... 307s Selecting previously unselected package shared-mime-info. 307s Preparing to unpack .../024-shared-mime-info_2.4-5_s390x.deb ... 307s Unpacking shared-mime-info (2.4-5) ... 307s Selecting previously unselected package ucf. 307s Preparing to unpack .../025-ucf_3.0049_all.deb ... 307s Moving old data out of the way 307s Unpacking ucf (3.0049) ... 307s Selecting previously unselected package libnghttp2-14:s390x. 307s Preparing to unpack .../026-libnghttp2-14_1.64.0-1_s390x.deb ... 307s Unpacking libnghttp2-14:s390x (1.64.0-1) ... 307s Selecting previously unselected package libpsl5t64:s390x. 307s Preparing to unpack .../027-libpsl5t64_0.21.2-1.1build1_s390x.deb ... 307s Unpacking libpsl5t64:s390x (0.21.2-1.1build1) ... 307s Selecting previously unselected package libbrotli1:s390x. 307s Preparing to unpack .../028-libbrotli1_1.1.0-2build3_s390x.deb ... 307s Unpacking libbrotli1:s390x (1.1.0-2build3) ... 307s Selecting previously unselected package libsasl2-modules-db:s390x. 307s Preparing to unpack .../029-libsasl2-modules-db_2.1.28+dfsg1-8build1_s390x.deb ... 307s Unpacking libsasl2-modules-db:s390x (2.1.28+dfsg1-8build1) ... 307s Selecting previously unselected package libsasl2-2:s390x. 307s Preparing to unpack .../030-libsasl2-2_2.1.28+dfsg1-8build1_s390x.deb ... 307s Unpacking libsasl2-2:s390x (2.1.28+dfsg1-8build1) ... 307s Selecting previously unselected package libldap-common. 307s Preparing to unpack .../031-libldap-common_2.6.9+dfsg-1~exp2ubuntu1_all.deb ... 307s Unpacking libldap-common (2.6.9+dfsg-1~exp2ubuntu1) ... 307s Selecting previously unselected package libldap2:s390x. 307s Preparing to unpack .../032-libldap2_2.6.9+dfsg-1~exp2ubuntu1_s390x.deb ... 307s Unpacking libldap2:s390x (2.6.9+dfsg-1~exp2ubuntu1) ... 307s Selecting previously unselected package librtmp1:s390x. 307s Preparing to unpack .../033-librtmp1_2.4+20151223.gitfa8646d.1-2build7_s390x.deb ... 307s Unpacking librtmp1:s390x (2.4+20151223.gitfa8646d.1-2build7) ... 307s Selecting previously unselected package libssh2-1t64:s390x. 307s Preparing to unpack .../034-libssh2-1t64_1.11.1-1_s390x.deb ... 307s Unpacking libssh2-1t64:s390x (1.11.1-1) ... 307s Selecting previously unselected package libcurl3t64-gnutls:s390x. 307s Preparing to unpack .../035-libcurl3t64-gnutls_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 307s Unpacking libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 307s Selecting previously unselected package libstemmer0d:s390x. 307s Preparing to unpack .../036-libstemmer0d_2.2.0-4build1_s390x.deb ... 307s Unpacking libstemmer0d:s390x (2.2.0-4build1) ... 307s Selecting previously unselected package libxmlb2:s390x. 307s Preparing to unpack .../037-libxmlb2_0.3.21-1_s390x.deb ... 307s Unpacking libxmlb2:s390x (0.3.21-1) ... 307s Selecting previously unselected package libappstream5:s390x. 307s Preparing to unpack .../038-libappstream5_1.0.4-1_s390x.deb ... 307s Unpacking libappstream5:s390x (1.0.4-1) ... 307s Selecting previously unselected package appstream. 307s Preparing to unpack .../039-appstream_1.0.4-1_s390x.deb ... 307s Unpacking appstream (1.0.4-1) ... 307s Selecting previously unselected package diffstat. 307s Preparing to unpack .../040-diffstat_1.67-1_s390x.deb ... 307s Unpacking diffstat (1.67-1) ... 307s Selecting previously unselected package gpgconf. 307s Preparing to unpack .../041-gpgconf_2.4.4-2ubuntu22_s390x.deb ... 307s Unpacking gpgconf (2.4.4-2ubuntu22) ... 307s Selecting previously unselected package gpg. 307s Preparing to unpack .../042-gpg_2.4.4-2ubuntu22_s390x.deb ... 307s Unpacking gpg (2.4.4-2ubuntu22) ... 307s Selecting previously unselected package libaliased-perl. 307s Preparing to unpack .../043-libaliased-perl_0.34-3_all.deb ... 307s Unpacking libaliased-perl (0.34-3) ... 307s Selecting previously unselected package libapt-pkg-perl. 307s Preparing to unpack .../044-libapt-pkg-perl_0.1.40build8_s390x.deb ... 307s Unpacking libapt-pkg-perl (0.1.40build8) ... 307s Selecting previously unselected package libb-hooks-op-check-perl:s390x. 307s Preparing to unpack .../045-libb-hooks-op-check-perl_0.22-3build2_s390x.deb ... 307s Unpacking libb-hooks-op-check-perl:s390x (0.22-3build2) ... 307s Selecting previously unselected package libdynaloader-functions-perl. 307s Preparing to unpack .../046-libdynaloader-functions-perl_0.004-1_all.deb ... 307s Unpacking libdynaloader-functions-perl (0.004-1) ... 307s Selecting previously unselected package libdevel-callchecker-perl:s390x. 307s Preparing to unpack .../047-libdevel-callchecker-perl_0.009-1build1_s390x.deb ... 307s Unpacking libdevel-callchecker-perl:s390x (0.009-1build1) ... 307s Selecting previously unselected package libparams-classify-perl:s390x. 307s Preparing to unpack .../048-libparams-classify-perl_0.015-2build6_s390x.deb ... 307s Unpacking libparams-classify-perl:s390x (0.015-2build6) ... 307s Selecting previously unselected package libmodule-runtime-perl. 307s Preparing to unpack .../049-libmodule-runtime-perl_0.016-2_all.deb ... 307s Unpacking libmodule-runtime-perl (0.016-2) ... 307s Selecting previously unselected package libtry-tiny-perl. 307s Preparing to unpack .../050-libtry-tiny-perl_0.32-1_all.deb ... 307s Unpacking libtry-tiny-perl (0.32-1) ... 307s Selecting previously unselected package libmodule-implementation-perl. 307s Preparing to unpack .../051-libmodule-implementation-perl_0.09-2_all.deb ... 307s Unpacking libmodule-implementation-perl (0.09-2) ... 307s Selecting previously unselected package libsub-exporter-progressive-perl. 307s Preparing to unpack .../052-libsub-exporter-progressive-perl_0.001013-3_all.deb ... 307s Unpacking libsub-exporter-progressive-perl (0.001013-3) ... 307s Selecting previously unselected package libvariable-magic-perl. 307s Preparing to unpack .../053-libvariable-magic-perl_0.64-1build1_s390x.deb ... 307s Unpacking libvariable-magic-perl (0.64-1build1) ... 307s Selecting previously unselected package libb-hooks-endofscope-perl. 307s Preparing to unpack .../054-libb-hooks-endofscope-perl_0.28-1_all.deb ... 307s Unpacking libb-hooks-endofscope-perl (0.28-1) ... 307s Selecting previously unselected package libberkeleydb-perl:s390x. 307s Preparing to unpack .../055-libberkeleydb-perl_0.66-1_s390x.deb ... 307s Unpacking libberkeleydb-perl:s390x (0.66-1) ... 307s Selecting previously unselected package libcapture-tiny-perl. 307s Preparing to unpack .../056-libcapture-tiny-perl_0.50-1_all.deb ... 307s Unpacking libcapture-tiny-perl (0.50-1) ... 307s Selecting previously unselected package libhtml-tagset-perl. 307s Preparing to unpack .../057-libhtml-tagset-perl_3.24-1_all.deb ... 307s Unpacking libhtml-tagset-perl (3.24-1) ... 307s Selecting previously unselected package liburi-perl. 307s Preparing to unpack .../058-liburi-perl_5.30-1_all.deb ... 307s Unpacking liburi-perl (5.30-1) ... 307s Selecting previously unselected package libhtml-parser-perl:s390x. 307s Preparing to unpack .../059-libhtml-parser-perl_3.83-1build1_s390x.deb ... 307s Unpacking libhtml-parser-perl:s390x (3.83-1build1) ... 307s Selecting previously unselected package libcgi-pm-perl. 307s Preparing to unpack .../060-libcgi-pm-perl_4.67-1_all.deb ... 307s Unpacking libcgi-pm-perl (4.67-1) ... 307s Selecting previously unselected package libclass-data-inheritable-perl. 307s Preparing to unpack .../061-libclass-data-inheritable-perl_0.10-1_all.deb ... 307s Unpacking libclass-data-inheritable-perl (0.10-1) ... 307s Selecting previously unselected package libclass-inspector-perl. 307s Preparing to unpack .../062-libclass-inspector-perl_1.36-3_all.deb ... 307s Unpacking libclass-inspector-perl (1.36-3) ... 307s Selecting previously unselected package libclass-method-modifiers-perl. 307s Preparing to unpack .../063-libclass-method-modifiers-perl_2.15-1_all.deb ... 307s Unpacking libclass-method-modifiers-perl (2.15-1) ... 307s Selecting previously unselected package libclass-xsaccessor-perl. 307s Preparing to unpack .../064-libclass-xsaccessor-perl_1.19-4build5_s390x.deb ... 307s Unpacking libclass-xsaccessor-perl (1.19-4build5) ... 307s Selecting previously unselected package libclone-perl:s390x. 307s Preparing to unpack .../065-libclone-perl_0.47-1_s390x.deb ... 307s Unpacking libclone-perl:s390x (0.47-1) ... 307s Selecting previously unselected package libconfig-tiny-perl. 307s Preparing to unpack .../066-libconfig-tiny-perl_2.30-1_all.deb ... 307s Unpacking libconfig-tiny-perl (2.30-1) ... 307s Selecting previously unselected package libparams-util-perl. 307s Preparing to unpack .../067-libparams-util-perl_1.102-3build1_s390x.deb ... 307s Unpacking libparams-util-perl (1.102-3build1) ... 307s Selecting previously unselected package libsub-install-perl. 307s Preparing to unpack .../068-libsub-install-perl_0.929-1_all.deb ... 307s Unpacking libsub-install-perl (0.929-1) ... 307s Selecting previously unselected package libdata-optlist-perl. 307s Preparing to unpack .../069-libdata-optlist-perl_0.114-1_all.deb ... 307s Unpacking libdata-optlist-perl (0.114-1) ... 307s Selecting previously unselected package libsub-exporter-perl. 307s Preparing to unpack .../070-libsub-exporter-perl_0.990-1_all.deb ... 307s Unpacking libsub-exporter-perl (0.990-1) ... 307s Selecting previously unselected package libconst-fast-perl. 307s Preparing to unpack .../071-libconst-fast-perl_0.014-2_all.deb ... 307s Unpacking libconst-fast-perl (0.014-2) ... 307s Selecting previously unselected package libcpanel-json-xs-perl:s390x. 307s Preparing to unpack .../072-libcpanel-json-xs-perl_4.39-1_s390x.deb ... 307s Unpacking libcpanel-json-xs-perl:s390x (4.39-1) ... 307s Selecting previously unselected package libdevel-stacktrace-perl. 307s Preparing to unpack .../073-libdevel-stacktrace-perl_2.0500-1_all.deb ... 307s Unpacking libdevel-stacktrace-perl (2.0500-1) ... 307s Selecting previously unselected package libexception-class-perl. 307s Preparing to unpack .../074-libexception-class-perl_1.45-1_all.deb ... 307s Unpacking libexception-class-perl (1.45-1) ... 307s Selecting previously unselected package libiterator-perl. 307s Preparing to unpack .../075-libiterator-perl_0.03+ds1-2_all.deb ... 307s Unpacking libiterator-perl (0.03+ds1-2) ... 307s Selecting previously unselected package libiterator-util-perl. 307s Preparing to unpack .../076-libiterator-util-perl_0.02+ds1-2_all.deb ... 307s Unpacking libiterator-util-perl (0.02+ds1-2) ... 307s Selecting previously unselected package libdata-dpath-perl. 307s Preparing to unpack .../077-libdata-dpath-perl_0.60-1_all.deb ... 307s Unpacking libdata-dpath-perl (0.60-1) ... 307s Selecting previously unselected package libdata-messagepack-perl. 307s Preparing to unpack .../078-libdata-messagepack-perl_1.02-1build5_s390x.deb ... 307s Unpacking libdata-messagepack-perl (1.02-1build5) ... 307s Selecting previously unselected package libnet-domain-tld-perl. 307s Preparing to unpack .../079-libnet-domain-tld-perl_1.75-4_all.deb ... 307s Unpacking libnet-domain-tld-perl (1.75-4) ... 307s Selecting previously unselected package libdata-validate-domain-perl. 307s Preparing to unpack .../080-libdata-validate-domain-perl_0.15-1_all.deb ... 307s Unpacking libdata-validate-domain-perl (0.15-1) ... 307s Selecting previously unselected package libnet-ipv6addr-perl. 307s Preparing to unpack .../081-libnet-ipv6addr-perl_1.02-1_all.deb ... 307s Unpacking libnet-ipv6addr-perl (1.02-1) ... 307s Selecting previously unselected package libnet-netmask-perl. 307s Preparing to unpack .../082-libnet-netmask-perl_2.0002-2_all.deb ... 307s Unpacking libnet-netmask-perl (2.0002-2) ... 307s Selecting previously unselected package libnetaddr-ip-perl. 307s Preparing to unpack .../083-libnetaddr-ip-perl_4.079+dfsg-2build5_s390x.deb ... 307s Unpacking libnetaddr-ip-perl (4.079+dfsg-2build5) ... 307s Selecting previously unselected package libdata-validate-ip-perl. 307s Preparing to unpack .../084-libdata-validate-ip-perl_0.31-1_all.deb ... 307s Unpacking libdata-validate-ip-perl (0.31-1) ... 307s Selecting previously unselected package libdata-validate-uri-perl. 307s Preparing to unpack .../085-libdata-validate-uri-perl_0.07-3_all.deb ... 307s Unpacking libdata-validate-uri-perl (0.07-3) ... 307s Selecting previously unselected package libemail-address-xs-perl. 307s Preparing to unpack .../086-libemail-address-xs-perl_1.05-1build5_s390x.deb ... 307s Unpacking libemail-address-xs-perl (1.05-1build5) ... 307s Selecting previously unselected package libencode-locale-perl. 307s Preparing to unpack .../087-libencode-locale-perl_1.05-3_all.deb ... 307s Unpacking libencode-locale-perl (1.05-3) ... 307s Selecting previously unselected package libipc-system-simple-perl. 307s Preparing to unpack .../088-libipc-system-simple-perl_1.30-2_all.deb ... 307s Unpacking libipc-system-simple-perl (1.30-2) ... 307s Selecting previously unselected package libfile-basedir-perl. 307s Preparing to unpack .../089-libfile-basedir-perl_0.09-2_all.deb ... 307s Unpacking libfile-basedir-perl (0.09-2) ... 307s Selecting previously unselected package libnumber-compare-perl. 307s Preparing to unpack .../090-libnumber-compare-perl_0.03-3_all.deb ... 307s Unpacking libnumber-compare-perl (0.03-3) ... 307s Selecting previously unselected package libtext-glob-perl. 307s Preparing to unpack .../091-libtext-glob-perl_0.11-3_all.deb ... 307s Unpacking libtext-glob-perl (0.11-3) ... 307s Selecting previously unselected package libfile-find-rule-perl. 307s Preparing to unpack .../092-libfile-find-rule-perl_0.34-3_all.deb ... 307s Unpacking libfile-find-rule-perl (0.34-3) ... 307s Selecting previously unselected package libtimedate-perl. 307s Preparing to unpack .../093-libtimedate-perl_2.3300-2_all.deb ... 307s Unpacking libtimedate-perl (2.3300-2) ... 307s Selecting previously unselected package libhttp-date-perl. 307s Preparing to unpack .../094-libhttp-date-perl_6.06-1_all.deb ... 307s Unpacking libhttp-date-perl (6.06-1) ... 307s Selecting previously unselected package libfile-listing-perl. 307s Preparing to unpack .../095-libfile-listing-perl_6.16-1_all.deb ... 307s Unpacking libfile-listing-perl (6.16-1) ... 307s Selecting previously unselected package libfile-sharedir-perl. 307s Preparing to unpack .../096-libfile-sharedir-perl_1.118-3_all.deb ... 307s Unpacking libfile-sharedir-perl (1.118-3) ... 307s Selecting previously unselected package libio-string-perl. 307s Preparing to unpack .../097-libio-string-perl_1.08-4_all.deb ... 307s Unpacking libio-string-perl (1.08-4) ... 307s Selecting previously unselected package libfont-ttf-perl. 307s Preparing to unpack .../098-libfont-ttf-perl_1.06-2_all.deb ... 307s Unpacking libfont-ttf-perl (1.06-2) ... 307s Selecting previously unselected package libio-html-perl. 307s Preparing to unpack .../099-libio-html-perl_1.004-3_all.deb ... 307s Unpacking libio-html-perl (1.004-3) ... 307s Selecting previously unselected package liblwp-mediatypes-perl. 307s Preparing to unpack .../100-liblwp-mediatypes-perl_6.04-2_all.deb ... 307s Unpacking liblwp-mediatypes-perl (6.04-2) ... 307s Selecting previously unselected package libhttp-message-perl. 307s Preparing to unpack .../101-libhttp-message-perl_7.00-2ubuntu1_all.deb ... 307s Unpacking libhttp-message-perl (7.00-2ubuntu1) ... 307s Selecting previously unselected package libhtml-form-perl. 307s Preparing to unpack .../102-libhtml-form-perl_6.12-1_all.deb ... 307s Unpacking libhtml-form-perl (6.12-1) ... 307s Selecting previously unselected package libhtml-html5-entities-perl. 307s Preparing to unpack .../103-libhtml-html5-entities-perl_0.004-3_all.deb ... 307s Unpacking libhtml-html5-entities-perl (0.004-3) ... 307s Selecting previously unselected package libhtml-tree-perl. 307s Preparing to unpack .../104-libhtml-tree-perl_5.07-3_all.deb ... 307s Unpacking libhtml-tree-perl (5.07-3) ... 307s Selecting previously unselected package libhttp-cookies-perl. 307s Preparing to unpack .../105-libhttp-cookies-perl_6.11-1_all.deb ... 307s Unpacking libhttp-cookies-perl (6.11-1) ... 307s Selecting previously unselected package libhttp-negotiate-perl. 307s Preparing to unpack .../106-libhttp-negotiate-perl_6.01-2_all.deb ... 307s Unpacking libhttp-negotiate-perl (6.01-2) ... 307s Selecting previously unselected package perl-openssl-defaults:s390x. 307s Preparing to unpack .../107-perl-openssl-defaults_7build3_s390x.deb ... 307s Unpacking perl-openssl-defaults:s390x (7build3) ... 307s Selecting previously unselected package libnet-ssleay-perl:s390x. 307s Preparing to unpack .../108-libnet-ssleay-perl_1.94-2_s390x.deb ... 307s Unpacking libnet-ssleay-perl:s390x (1.94-2) ... 307s Selecting previously unselected package libio-socket-ssl-perl. 307s Preparing to unpack .../109-libio-socket-ssl-perl_2.089-1_all.deb ... 307s Unpacking libio-socket-ssl-perl (2.089-1) ... 307s Selecting previously unselected package libnet-http-perl. 307s Preparing to unpack .../110-libnet-http-perl_6.23-1_all.deb ... 307s Unpacking libnet-http-perl (6.23-1) ... 307s Selecting previously unselected package liblwp-protocol-https-perl. 307s Preparing to unpack .../111-liblwp-protocol-https-perl_6.14-1_all.deb ... 307s Unpacking liblwp-protocol-https-perl (6.14-1) ... 307s Selecting previously unselected package libwww-robotrules-perl. 307s Preparing to unpack .../112-libwww-robotrules-perl_6.02-1_all.deb ... 307s Unpacking libwww-robotrules-perl (6.02-1) ... 307s Selecting previously unselected package libwww-perl. 307s Preparing to unpack .../113-libwww-perl_6.77-1_all.deb ... 307s Unpacking libwww-perl (6.77-1) ... 307s Selecting previously unselected package libhtml-tokeparser-simple-perl. 307s Preparing to unpack .../114-libhtml-tokeparser-simple-perl_3.16-4_all.deb ... 307s Unpacking libhtml-tokeparser-simple-perl (3.16-4) ... 307s Selecting previously unselected package libimport-into-perl. 307s Preparing to unpack .../115-libimport-into-perl_1.002005-2_all.deb ... 307s Unpacking libimport-into-perl (1.002005-2) ... 307s Selecting previously unselected package libio-interactive-perl. 307s Preparing to unpack .../116-libio-interactive-perl_1.026-1_all.deb ... 307s Unpacking libio-interactive-perl (1.026-1) ... 307s Selecting previously unselected package libjson-maybexs-perl. 307s Preparing to unpack .../117-libjson-maybexs-perl_1.004008-1_all.deb ... 307s Unpacking libjson-maybexs-perl (1.004008-1) ... 307s Selecting previously unselected package liblist-compare-perl. 307s Preparing to unpack .../118-liblist-compare-perl_0.55-2_all.deb ... 307s Unpacking liblist-compare-perl (0.55-2) ... 307s Selecting previously unselected package liblist-someutils-perl. 307s Preparing to unpack .../119-liblist-someutils-perl_0.59-1_all.deb ... 307s Unpacking liblist-someutils-perl (0.59-1) ... 307s Selecting previously unselected package liblist-utilsby-perl. 307s Preparing to unpack .../120-liblist-utilsby-perl_0.12-2_all.deb ... 307s Unpacking liblist-utilsby-perl (0.12-2) ... 307s Selecting previously unselected package liblzo2-2:s390x. 307s Preparing to unpack .../121-liblzo2-2_2.10-3_s390x.deb ... 307s Unpacking liblzo2-2:s390x (2.10-3) ... 307s Selecting previously unselected package libmarkdown2:s390x. 307s Preparing to unpack .../122-libmarkdown2_2.2.7-2.1_s390x.deb ... 307s Unpacking libmarkdown2:s390x (2.2.7-2.1) ... 307s Selecting previously unselected package libmldbm-perl. 307s Preparing to unpack .../123-libmldbm-perl_2.05-4_all.deb ... 307s Unpacking libmldbm-perl (2.05-4) ... 307s Selecting previously unselected package librole-tiny-perl. 307s Preparing to unpack .../124-librole-tiny-perl_2.002004-1_all.deb ... 307s Unpacking librole-tiny-perl (2.002004-1) ... 307s Selecting previously unselected package libsub-quote-perl. 307s Preparing to unpack .../125-libsub-quote-perl_2.006008-1ubuntu1_all.deb ... 307s Unpacking libsub-quote-perl (2.006008-1ubuntu1) ... 307s Selecting previously unselected package libmoo-perl. 307s Preparing to unpack .../126-libmoo-perl_2.005005-1_all.deb ... 307s Unpacking libmoo-perl (2.005005-1) ... 307s Selecting previously unselected package libstrictures-perl. 307s Preparing to unpack .../127-libstrictures-perl_2.000006-1_all.deb ... 307s Unpacking libstrictures-perl (2.000006-1) ... 307s Selecting previously unselected package libmoox-aliases-perl. 307s Preparing to unpack .../128-libmoox-aliases-perl_0.001006-2_all.deb ... 307s Unpacking libmoox-aliases-perl (0.001006-2) ... 307s Selecting previously unselected package libmouse-perl:s390x. 307s Preparing to unpack .../129-libmouse-perl_2.5.11-1build1_s390x.deb ... 307s Unpacking libmouse-perl:s390x (2.5.11-1build1) ... 307s Selecting previously unselected package libpackage-stash-perl. 307s Preparing to unpack .../130-libpackage-stash-perl_0.40-1_all.deb ... 307s Unpacking libpackage-stash-perl (0.40-1) ... 307s Selecting previously unselected package libsub-identify-perl. 307s Preparing to unpack .../131-libsub-identify-perl_0.14-3build4_s390x.deb ... 307s Unpacking libsub-identify-perl (0.14-3build4) ... 307s Selecting previously unselected package libsub-name-perl:s390x. 307s Preparing to unpack .../132-libsub-name-perl_0.28-1_s390x.deb ... 307s Unpacking libsub-name-perl:s390x (0.28-1) ... 307s Selecting previously unselected package libnamespace-clean-perl. 307s Preparing to unpack .../133-libnamespace-clean-perl_0.27-2_all.deb ... 307s Unpacking libnamespace-clean-perl (0.27-2) ... 307s Selecting previously unselected package libpath-tiny-perl. 307s Preparing to unpack .../134-libpath-tiny-perl_0.146-1_all.deb ... 307s Unpacking libpath-tiny-perl (0.146-1) ... 307s Selecting previously unselected package libperlio-gzip-perl. 307s Preparing to unpack .../135-libperlio-gzip-perl_0.20-1build5_s390x.deb ... 307s Unpacking libperlio-gzip-perl (0.20-1build5) ... 307s Selecting previously unselected package libperlio-utf8-strict-perl. 307s Preparing to unpack .../136-libperlio-utf8-strict-perl_0.010-1build4_s390x.deb ... 307s Unpacking libperlio-utf8-strict-perl (0.010-1build4) ... 307s Selecting previously unselected package libproc-processtable-perl:s390x. 307s Preparing to unpack .../137-libproc-processtable-perl_0.636-1build4_s390x.deb ... 307s Unpacking libproc-processtable-perl:s390x (0.636-1build4) ... 307s Selecting previously unselected package libregexp-wildcards-perl. 307s Preparing to unpack .../138-libregexp-wildcards-perl_1.05-3_all.deb ... 307s Unpacking libregexp-wildcards-perl (1.05-3) ... 307s Selecting previously unselected package libsereal-decoder-perl. 307s Preparing to unpack .../139-libsereal-decoder-perl_5.004+ds-1build4_s390x.deb ... 307s Unpacking libsereal-decoder-perl (5.004+ds-1build4) ... 307s Selecting previously unselected package libsereal-encoder-perl. 307s Preparing to unpack .../140-libsereal-encoder-perl_5.004+ds-1build4_s390x.deb ... 307s Unpacking libsereal-encoder-perl (5.004+ds-1build4) ... 307s Selecting previously unselected package libsort-versions-perl. 307s Preparing to unpack .../141-libsort-versions-perl_1.62-3_all.deb ... 307s Unpacking libsort-versions-perl (1.62-3) ... 307s Selecting previously unselected package libxs-parse-keyword-perl. 307s Preparing to unpack .../142-libxs-parse-keyword-perl_0.48-2_s390x.deb ... 307s Unpacking libxs-parse-keyword-perl (0.48-2) ... 307s Selecting previously unselected package libsyntax-keyword-try-perl. 307s Preparing to unpack .../143-libsyntax-keyword-try-perl_0.30-1_s390x.deb ... 307s Unpacking libsyntax-keyword-try-perl (0.30-1) ... 307s Selecting previously unselected package libterm-readkey-perl. 307s Preparing to unpack .../144-libterm-readkey-perl_2.38-2build5_s390x.deb ... 307s Unpacking libterm-readkey-perl (2.38-2build5) ... 307s Selecting previously unselected package libtext-levenshteinxs-perl. 307s Preparing to unpack .../145-libtext-levenshteinxs-perl_0.03-5build5_s390x.deb ... 307s Unpacking libtext-levenshteinxs-perl (0.03-5build5) ... 307s Selecting previously unselected package libtext-markdown-discount-perl. 307s Preparing to unpack .../146-libtext-markdown-discount-perl_0.18-1_s390x.deb ... 307s Unpacking libtext-markdown-discount-perl (0.18-1) ... 307s Selecting previously unselected package libtext-xslate-perl:s390x. 307s Preparing to unpack .../147-libtext-xslate-perl_3.5.9-2build1_s390x.deb ... 307s Unpacking libtext-xslate-perl:s390x (3.5.9-2build1) ... 307s Selecting previously unselected package libtime-duration-perl. 307s Preparing to unpack .../148-libtime-duration-perl_1.21-2_all.deb ... 307s Unpacking libtime-duration-perl (1.21-2) ... 307s Selecting previously unselected package libtime-moment-perl. 307s Preparing to unpack .../149-libtime-moment-perl_0.44-2build5_s390x.deb ... 307s Unpacking libtime-moment-perl (0.44-2build5) ... 307s Selecting previously unselected package libunicode-utf8-perl. 307s Preparing to unpack .../150-libunicode-utf8-perl_0.62-2build4_s390x.deb ... 307s Unpacking libunicode-utf8-perl (0.62-2build4) ... 307s Selecting previously unselected package libwww-mechanize-perl. 307s Preparing to unpack .../151-libwww-mechanize-perl_2.18-1ubuntu1_all.deb ... 307s Unpacking libwww-mechanize-perl (2.18-1ubuntu1) ... 307s Selecting previously unselected package libxml-namespacesupport-perl. 307s Preparing to unpack .../152-libxml-namespacesupport-perl_1.12-2_all.deb ... 307s Unpacking libxml-namespacesupport-perl (1.12-2) ... 307s Selecting previously unselected package libxml-sax-base-perl. 307s Preparing to unpack .../153-libxml-sax-base-perl_1.09-3_all.deb ... 307s Unpacking libxml-sax-base-perl (1.09-3) ... 307s Selecting previously unselected package libxml-sax-perl. 307s Preparing to unpack .../154-libxml-sax-perl_1.02+dfsg-4_all.deb ... 307s Unpacking libxml-sax-perl (1.02+dfsg-4) ... 307s Selecting previously unselected package libxml-libxml-perl. 307s Preparing to unpack .../155-libxml-libxml-perl_2.0207+dfsg+really+2.0134-5build1_s390x.deb ... 307s Unpacking libxml-libxml-perl (2.0207+dfsg+really+2.0134-5build1) ... 307s Selecting previously unselected package libyaml-libyaml-perl. 307s Preparing to unpack .../156-libyaml-libyaml-perl_0.903.0+ds-1_s390x.deb ... 307s Unpacking libyaml-libyaml-perl (0.903.0+ds-1) ... 307s Selecting previously unselected package libdevel-size-perl. 307s Preparing to unpack .../157-libdevel-size-perl_0.84-1build1_s390x.deb ... 307s Unpacking libdevel-size-perl (0.84-1build1) ... 307s Selecting previously unselected package libipc-run3-perl. 307s Preparing to unpack .../158-libipc-run3-perl_0.049-1_all.deb ... 307s Unpacking libipc-run3-perl (0.049-1) ... 307s Selecting previously unselected package lzip. 307s Preparing to unpack .../159-lzip_1.25-1_s390x.deb ... 307s Unpacking lzip (1.25-1) ... 307s Selecting previously unselected package lzop. 307s Preparing to unpack .../160-lzop_1.04-2build3_s390x.deb ... 307s Unpacking lzop (1.04-2build3) ... 307s Selecting previously unselected package patchutils. 307s Preparing to unpack .../161-patchutils_0.4.2-1build3_s390x.deb ... 307s Unpacking patchutils (0.4.2-1build3) ... 307s Selecting previously unselected package t1utils. 307s Preparing to unpack .../162-t1utils_1.41-4build3_s390x.deb ... 307s Unpacking t1utils (1.41-4build3) ... 307s Selecting previously unselected package unzip. 307s Preparing to unpack .../163-unzip_6.0-28ubuntu6_s390x.deb ... 307s Unpacking unzip (6.0-28ubuntu6) ... 307s Selecting previously unselected package lintian. 307s Preparing to unpack .../164-lintian_2.121.1ubuntu1_all.deb ... 307s Unpacking lintian (2.121.1ubuntu1) ... 307s Selecting previously unselected package sbuild-build-depends-lintian-dummy. 307s Preparing to unpack .../165-sbuild-build-depends-lintian-dummy_0.invalid.0_s390x.deb ... 307s Unpacking sbuild-build-depends-lintian-dummy (0.invalid.0) ... 307s Setting up libberkeleydb-perl:s390x (0.66-1) ... 307s Setting up libtext-charwidth-perl:s390x (0.04-11build4) ... 307s Setting up libkeyutils1:s390x (1.6.3-4ubuntu2) ... 307s Setting up libunicode-utf8-perl (0.62-2build4) ... 307s Setting up libmouse-perl:s390x (2.5.11-1build1) ... 307s Setting up libdata-messagepack-perl (1.02-1build5) ... 307s Setting up libclass-inspector-perl (1.36-3) ... 307s Setting up libdynaloader-functions-perl (0.004-1) ... 307s Setting up libtext-glob-perl (0.11-3) ... 307s Setting up libclass-method-modifiers-perl (2.15-1) ... 307s Setting up liblist-compare-perl (0.55-2) ... 307s Setting up libclone-perl:s390x (0.47-1) ... 307s Setting up libyaml-0-2:s390x (0.2.5-2) ... 307s Setting up libsub-identify-perl (0.14-3build4) ... 307s Setting up libcpanel-json-xs-perl:s390x (4.39-1) ... 307s Setting up libhtml-tagset-perl (3.24-1) ... 307s Setting up libdevel-size-perl (0.84-1build1) ... 307s Setting up unzip (6.0-28ubuntu6) ... 307s Setting up libbrotli1:s390x (1.1.0-2build3) ... 307s Setting up libsqlite3-0:s390x (3.46.1-1) ... 307s Setting up liblwp-mediatypes-perl (6.04-2) ... 307s Setting up libyaml-libyaml-perl (0.903.0+ds-1) ... 307s Setting up libio-interactive-perl (1.026-1) ... 307s Setting up libtry-tiny-perl (0.32-1) ... 307s Setting up libnghttp2-14:s390x (1.64.0-1) ... 307s Setting up perl-openssl-defaults:s390x (7build3) ... 307s Setting up libmldbm-perl (2.05-4) ... 307s Setting up libxml-namespacesupport-perl (1.12-2) ... 307s Setting up liblzo2-2:s390x (2.10-3) ... 307s Setting up libtime-moment-perl (0.44-2build5) ... 307s Setting up libencode-locale-perl (1.05-3) ... 307s Setting up libidn2-0:s390x (2.3.7-2build2) ... 307s Setting up libconfig-tiny-perl (2.30-1) ... 307s Setting up libsereal-encoder-perl (5.004+ds-1build4) ... 307s Setting up libldap-common (2.6.9+dfsg-1~exp2ubuntu1) ... 307s Setting up liblist-utilsby-perl (0.12-2) ... 307s Setting up libtext-wrapi18n-perl (0.06-10) ... 307s Setting up libnet-netmask-perl (2.0002-2) ... 307s Setting up libsub-install-perl (0.929-1) ... 307s Setting up libkrb5support0:s390x (1.21.3-4ubuntu1) ... 307s Setting up libnumber-compare-perl (0.03-3) ... 307s Setting up libsasl2-modules-db:s390x (2.1.28+dfsg1-8build1) ... 307s Setting up patchutils (0.4.2-1build3) ... 307s Setting up libjson-maybexs-perl (1.004008-1) ... 307s Setting up libxml-sax-base-perl (1.09-3) ... 307s Setting up libio-string-perl (1.08-4) ... 307s Setting up libnetaddr-ip-perl (4.079+dfsg-2build5) ... 307s Setting up libnettle8t64:s390x (3.10.1-1) ... 307s Setting up libclass-data-inheritable-perl (0.10-1) ... 307s Setting up libfile-find-rule-perl (0.34-3) ... 307s Setting up libipc-system-simple-perl (1.30-2) ... 307s Setting up libnet-domain-tld-perl (1.75-4) ... 307s Setting up libperlio-utf8-strict-perl (0.010-1build4) ... 307s Setting up lzip (1.25-1) ... 307s update-alternatives: using /usr/bin/lzip.lzip to provide /usr/bin/lzip (lzip) in auto mode 307s update-alternatives: using /usr/bin/lzip.lzip to provide /usr/bin/lzip-compressor (lzip-compressor) in auto mode 307s update-alternatives: using /usr/bin/lzip.lzip to provide /usr/bin/lzip-decompressor (lzip-decompressor) in auto mode 307s Setting up t1utils (1.41-4build3) ... 307s Setting up diffstat (1.67-1) ... 307s Setting up libvariable-magic-perl (0.64-1build1) ... 307s Setting up libio-html-perl (1.004-3) ... 307s Setting up libb-hooks-op-check-perl:s390x (0.22-3build2) ... 307s Setting up ucf (3.0049) ... 307s Setting up libk5crypto3:s390x (1.21.3-4ubuntu1) ... 307s Setting up libparams-util-perl (1.102-3build1) ... 307s Setting up libsasl2-2:s390x (2.1.28+dfsg1-8build1) ... 307s Setting up libtime-duration-perl (1.21-2) ... 307s Setting up libtext-xslate-perl:s390x (3.5.9-2build1) ... 307s Setting up libsub-exporter-progressive-perl (0.001013-3) ... 307s Setting up libcapture-tiny-perl (0.50-1) ... 307s Setting up libtimedate-perl (2.3300-2) ... 307s Setting up libsub-name-perl:s390x (0.28-1) ... 307s Setting up libffi8:s390x (3.4.7-1) ... 307s Setting up libdata-validate-domain-perl (0.15-1) ... 307s Setting up libproc-processtable-perl:s390x (0.636-1build4) ... 307s Setting up libhogweed6t64:s390x (3.10.1-1) ... 307s Setting up libpath-tiny-perl (0.146-1) ... 307s Setting up lzop (1.04-2build3) ... 307s Setting up librole-tiny-perl (2.002004-1) ... 307s Setting up libtasn1-6:s390x (4.20.0-2) ... 307s Setting up libipc-run3-perl (0.049-1) ... 307s Setting up libregexp-wildcards-perl (1.05-3) ... 307s Setting up libfile-sharedir-perl (1.118-3) ... 307s Setting up libaliased-perl (0.34-3) ... 307s Setting up netbase (6.4) ... 307s Setting up libstrictures-perl (2.000006-1) ... 307s Setting up libsub-quote-perl (2.006008-1ubuntu1) ... 307s Setting up libdevel-stacktrace-perl (2.0500-1) ... 307s Setting up libclass-xsaccessor-perl (1.19-4build5) ... 307s Setting up libkrb5-3:s390x (1.21.3-4ubuntu1) ... 307s Setting up libstemmer0d:s390x (2.2.0-4build1) ... 307s Setting up libsort-versions-perl (1.62-3) ... 307s Setting up libssh2-1t64:s390x (1.11.1-1) ... 307s Setting up libapt-pkg6.0t64:s390x (2.9.29) ... 307s Setting up libterm-readkey-perl (2.38-2build5) ... 307s Setting up libfont-ttf-perl (1.06-2) ... 307s Setting up openssl (3.4.0-1ubuntu2) ... 307s Setting up libtext-levenshteinxs-perl (0.03-5build5) ... 307s Setting up libperlio-gzip-perl (0.20-1build5) ... 307s Setting up readline-common (8.2-6) ... 307s Setting up libhtml-html5-entities-perl (0.004-3) ... 307s Setting up libsereal-decoder-perl (5.004+ds-1build4) ... 307s Setting up libmarkdown2:s390x (2.2.7-2.1) ... 307s Setting up libldap2:s390x (2.6.9+dfsg-1~exp2ubuntu1) ... 307s Setting up liburi-perl (5.30-1) ... 307s Setting up iso-codes (4.17.0-1) ... 307s Setting up libnet-ipv6addr-perl (1.02-1) ... 307s Setting up libdata-validate-ip-perl (0.31-1) ... 307s Setting up libemail-address-xs-perl (1.05-1build5) ... 307s Setting up libnet-ssleay-perl:s390x (1.94-2) ... 307s Setting up libapt-pkg-perl (0.1.40build8) ... 307s Setting up libhttp-date-perl (6.06-1) ... 307s Setting up libfile-basedir-perl (0.09-2) ... 307s Setting up libfile-listing-perl (6.16-1) ... 307s Setting up libpsl5t64:s390x (0.21.2-1.1build1) ... 307s Setting up libnet-http-perl (6.23-1) ... 307s Setting up libtext-markdown-discount-perl (0.18-1) ... 307s Setting up libexception-class-perl (1.45-1) ... 307s Setting up libdevel-callchecker-perl:s390x (0.009-1build1) ... 307s Setting up libxml-sax-perl (1.02+dfsg-4) ... 307s update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::PurePerl with priority 10... 307s update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... 307s Creating config file /etc/perl/XML/SAX/ParserDetails.ini with new version 307s Setting up ca-certificates (20241223) ... 307s Updating certificates in /etc/ssl/certs... 307s 152 added, 0 removed; done. 307s Setting up libglib2.0-0t64:s390x (2.83.3-2) ... 307s No schema files found: doing nothing. 307s Setting up libdata-validate-uri-perl (0.07-3) ... 307s Setting up libxs-parse-keyword-perl (0.48-2) ... 307s Setting up shared-mime-info (2.4-5) ... 307s Warning: program compiled against libxml 212 using older 209 307s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 307s Setting up libgssapi-krb5-2:s390x (1.21.3-4ubuntu1) ... 307s Setting up libdata-optlist-perl (0.114-1) ... 307s Setting up libreadline8t64:s390x (8.2-6) ... 307s Setting up libxml-libxml-perl (2.0207+dfsg+really+2.0134-5build1) ... 307s update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX::Parser with priority 50... 307s update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX with priority 50... 307s update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... 307s Setting up libwww-robotrules-perl (6.02-1) ... 307s Setting up libsyntax-keyword-try-perl (0.30-1) ... 307s Setting up libhtml-parser-perl:s390x (3.83-1build1) ... 307s Setting up gpgconf (2.4.4-2ubuntu22) ... 307s Setting up libio-socket-ssl-perl (2.089-1) ... 307s Setting up gpg (2.4.4-2ubuntu22) ... 307s Setting up libsub-exporter-perl (0.990-1) ... 307s Setting up libhttp-message-perl (7.00-2ubuntu1) ... 307s Setting up libhtml-form-perl (6.12-1) ... 307s Setting up libgnutls30t64:s390x (3.8.9-2ubuntu1) ... 307s Setting up libiterator-perl (0.03+ds1-2) ... 307s Setting up libhttp-negotiate-perl (6.01-2) ... 307s Setting up libiterator-util-perl (0.02+ds1-2) ... 307s Setting up libhttp-cookies-perl (6.11-1) ... 307s Setting up libhtml-tree-perl (5.07-3) ... 307s Setting up libxmlb2:s390x (0.3.21-1) ... 307s Setting up libparams-classify-perl:s390x (0.015-2build6) ... 307s Setting up libcgi-pm-perl (4.67-1) ... 307s Setting up libmodule-runtime-perl (0.016-2) ... 307s Setting up librtmp1:s390x (2.4+20151223.gitfa8646d.1-2build7) ... 307s Setting up libconst-fast-perl (0.014-2) ... 307s Setting up libdata-dpath-perl (0.60-1) ... 307s Setting up libmodule-implementation-perl (0.09-2) ... 307s Setting up libpackage-stash-perl (0.40-1) ... 307s Setting up libimport-into-perl (1.002005-2) ... 307s Setting up libmoo-perl (2.005005-1) ... 307s Setting up libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 307s Setting up liblist-someutils-perl (0.59-1) ... 307s Setting up libappstream5:s390x (1.0.4-1) ... 307s Setting up appstream (1.0.4-1) ... 307s ✔ Metadata cache was updated successfully. 307s Setting up libmoox-aliases-perl (0.001006-2) ... 307s Setting up libb-hooks-endofscope-perl (0.28-1) ... 307s Setting up libnamespace-clean-perl (0.27-2) ... 307s Setting up liblwp-protocol-https-perl (6.14-1) ... 307s Setting up libwww-perl (6.77-1) ... 307s Setting up libhtml-tokeparser-simple-perl (3.16-4) ... 307s Setting up libwww-mechanize-perl (2.18-1ubuntu1) ... 307s Setting up lintian (2.121.1ubuntu1) ... 307s Setting up sbuild-build-depends-lintian-dummy (0.invalid.0) ... 307s Processing triggers for libc-bin (2.40-4ubuntu1) ... 307s Processing triggers for man-db (2.13.0-1) ... 307s Not building database; man-db/auto-update is not 'true'. 307s Processing triggers for ca-certificates (20241223) ... 307s Updating certificates in /etc/ssl/certs... 307s 0 added, 0 removed; done. 307s Running hooks in /etc/ca-certificates/update.d... 307s done. 307s Running lintian... 307s W: procenv source: build-depends-on-obsolete-package Build-Depends: pkg-config => pkgconf 307s W: procenv: changelog-distribution-does-not-match-changes-file unstable != plucky [usr/share/doc/procenv/changelog.Debian.gz:1] 307s W: procenv source: debian-watch-could-verify-download debian/upstream/signing-key.asc [debian/watch] 307s W: procenv changes: distribution-and-changes-mismatch plucky unstable 307s W: procenv source: orig-tarball-missing-upstream-signature procenv_0.51.orig.tar.gz 307s W: procenv source: package-uses-deprecated-debhelper-compat-version 9 307s 307s I: Lintian run was successful. 307s 307s +------------------------------------------------------------------------------+ 307s | Post Build Thu, 20 Feb 2025 00:17:32 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s 307s +------------------------------------------------------------------------------+ 307s | Cleanup Thu, 20 Feb 2025 00:17:32 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s Purging /build/reproducible-path 307s Not cleaning session: cloned chroot in use 307s 307s +------------------------------------------------------------------------------+ 307s | Summary Thu, 20 Feb 2025 00:17:33 +0000 | 307s +------------------------------------------------------------------------------+ 307s 307s Build Architecture: s390x 307s Build Type: binary 307s Build-Space: 7316 307s Build-Time: 19 307s Distribution: plucky 307s Host Architecture: s390x 307s Install-Time: 7 307s Job: procenv 307s Lintian: warn 307s Machine Architecture: s390x 307s Package: procenv 307s Package-Time: 32 307s Source-Version: 0.51-0.2 307s Space: 7316 307s Status: successful 307s Version: 0.51-0.2 307s -------------------------------------------------------------------------------- 307s Finished at 2025-02-20T00:17:11Z 307s Build needed 00:00:32, 7316k disk space 307s INFO: Listing information on 'procenv_0.51-0.2_s390x.deb' 307s new Debian package, version 2.0. 307s size 72754 bytes: control archive=718 bytes. 307s 571 bytes, 14 lines control 307s 383 bytes, 6 lines md5sums 307s Package: procenv 307s Version: 0.51-0.2 307s Architecture: s390x 307s Maintainer: James Hunt 307s Installed-Size: 206 307s Depends: libc6 (>= 2.38), libcap2 (>= 1:2.10), libselinux1 (>= 3.1~) 307s Section: utils 307s Priority: optional 307s Homepage: https://github.com/jamesodhunt/procenv 307s Description: Utility to show process environment 307s This package contains a command-line tool that displays as much 307s detail about itself and its environment as possible. It can be 307s used as a test tool, to understand the type of environment a 307s process runs in, and for comparing system environments. 307s INFO: Listing contents of 'procenv_0.51-0.2_s390x.deb' 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./ 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/ 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/bin/ 307s -rwxr-xr-x root/root 185872 2020-12-11 13:51 ./usr/bin/procenv 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/ 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/doc/ 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/doc/procenv/ 307s -rw-r--r-- root/root 3862 2019-08-02 20:40 ./usr/share/doc/procenv/NEWS.gz 307s -rw-r--r-- root/root 2844 2019-08-02 20:40 ./usr/share/doc/procenv/TODO 307s -rw-r--r-- root/root 649 2020-12-11 13:51 ./usr/share/doc/procenv/changelog.Debian.gz 307s -rw-r--r-- root/root 1140 2020-08-11 13:14 ./usr/share/doc/procenv/copyright 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/man/ 307s drwxr-xr-x root/root 0 2020-12-11 13:51 ./usr/share/man/man1/ 307s -rw-r--r-- root/root 4021 2020-12-11 13:51 ./usr/share/man/man1/procenv.1.gz 307s lrwxrwxrwx root/root 0 2020-12-11 13:51 ./usr/share/doc/procenv/README -> README.rst 307s INFO: Extracting 'procenv_0.51-0.2_s390x.deb' to '/tmp/autopkgtest.dghVVw/autopkgtest_tmp/extract' 307s INFO: Installing package 'procenv' from 'procenv_0.51-0.2_s390x.deb' 307s Reading package lists... 307s Building dependency tree... 307s Reading state information... 307s Installing: 307s procenv 307s 307s Summary: 307s Upgrading: 0, Installing: 1, Removing: 0, Not Upgrading: 0 307s Download size: 0 B / 72.8 kB 307s Space needed: 211 kB / 18.2 GB available 307s 307s Get:1 /tmp/autopkgtest.dghVVw/build.oqW/src/procenv_0.51-0.2_s390x.deb procenv s390x 0.51-0.2 [72.8 kB] 307s Selecting previously unselected package procenv. 307s (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 ... 58941 files and directories currently installed.) 307s Preparing to unpack .../src/procenv_0.51-0.2_s390x.deb ... 307s Unpacking procenv (0.51-0.2) ... 307s Setting up procenv (0.51-0.2) ... 307s Processing triggers for man-db (2.13.0-1) ... 308s INFO: Showing AutoPkgTest environment by running 'procenv' from package 'procenv' 308s meta: 308s version: 0.51 308s package: procenv 0.51 308s mode: privileged 308s build-type: reproducible 308s driver: 308s name: linux 308s file: platform/linux/platform.c 308s format-type: text 308s format-version: 17 308s arguments: 308s count: 1 308s list: 308s argv[0]: procenv 308s capabilities: 308s count (CAP_LAST_CAP+1): 41 308s known: 308s CAP_CHOWN: 308s number: 0 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_DAC_OVERRIDE: 308s number: 1 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_DAC_READ_SEARCH: 308s number: 2 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_FOWNER: 308s number: 3 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_FSETID: 308s number: 4 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_KILL: 308s number: 5 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SETGID: 308s number: 6 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SETUID: 308s number: 7 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SETPCAP: 308s number: 8 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_LINUX_IMMUTABLE: 308s number: 9 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_NET_BIND_SERVICE: 308s number: 10 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_NET_BROADCAST: 308s number: 11 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_NET_ADMIN: 308s number: 12 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_NET_RAW: 308s number: 13 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_IPC_LOCK: 308s number: 14 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_IPC_OWNER: 308s number: 15 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SYS_MODULE: 308s number: 16 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SYS_RAWIO: 308s number: 17 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SYS_CHROOT: 308s number: 18 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SYS_PTRACE: 308s number: 19 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SYS_PACCT: 308s number: 20 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SYS_ADMIN: 308s number: 21 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SYS_BOOT: 308s number: 22 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SYS_NICE: 308s number: 23 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SYS_RESOURCE: 308s number: 24 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SYS_TIME: 308s number: 25 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SYS_TTY_CONFIG: 308s number: 26 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_MKNOD: 308s number: 27 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_LEASE: 308s number: 28 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_AUDIT_WRITE: 308s number: 29 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_AUDIT_CONTROL: 308s number: 30 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SETFCAP: 308s number: 31 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_MAC_OVERRIDE: 308s number: 32 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_MAC_ADMIN: 308s number: 33 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_SYSLOG: 308s number: 34 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_WAKE_ALARM: 308s number: 35 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_BLOCK_SUSPEND: 308s number: 36 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s CAP_AUDIT_READ: 308s number: 37 308s supported: yes 308s in bounding set: yes 308s effective: yes 308s inheritable: no 308s permitted: yes 308s unknown: 308s keep: no 308s securebits: 308s value: 0x0 308s fields: 308s SECBIT_KEEP_CAPS: 0 308s SECBIT_NO_SETUID_FIXUP: 0 308s SECBIT_NOROOT: 0 308s cgroups: 308s 0: 308s path: /user.slice/user-1000.slice/session-1.scope 308s clocks: 308s CLOCK_REALTIME: 308s resolution: 0.000000001s 308s CLOCK_REALTIME_COARSE: 308s resolution: 0.010000000s 308s CLOCK_MONOTONIC: 308s resolution: 0.000000001s 308s CLOCK_MONOTONIC_COARSE: 308s resolution: 0.010000000s 308s CLOCK_MONOTONIC_RAW: 308s resolution: 0.000000001s 308s CLOCK_MONOTONIC_RAW: 308s resolution: 0.000000001s 308s CLOCK_PROCESS_CPUTIME_ID: 308s resolution: 0.000000001s 308s CLOCK_THREAD_CPUTIME_ID: 308s resolution: 0.000000001s 308s CLOCK_BOOTTIME: 308s resolution: 0.000000001s 308s compiler: 308s name: GCC 308s version: 14.2.0 308s compile date (__DATE__): [suppressed] 308s compile time (__TIME__): [suppressed] 308s timestamp (__TIMESTAMP__): [suppressed] 308s translation unit (__FILE__): procenv.c 308s base file (__BASE_FILE__): procenv.c 308s feature test macros: 308s _ATFILE_SOURCE: defined 308s _BSD_SOURCE: not defined 308s _DEFAULT_SOURCE: defined 308s _FILE_OFFSET_BITS: not defined 308s _FORTIFY_SOURCE: defined 308s _GNU_SOURCE: defined 308s _ISOC11_SOURCE: defined 308s _ISOC95_SOURCE: defined 308s _ISOC99_SOURCE: defined 308s _LARGEFILE64_SOURCE: defined 308s _LARGEFILE_SOURCE: defined 308s _POSIX_C_SOURCE: 200809 308s _POSIX_RAW_SOCKETS: defined 308s _POSIX_SOURCE: defined 308s _REENTRANT: not defined 308s __STDC_VERSION__: 199901 308s __STRICT_ANSI__: not defined 308s __STDC_WANT_IEC_60559_BFP_EXT__: 1 308s __STDC_WANT_IEC_60559_FUNCS_EXT__: 1 308s __STDC_WANT_LIB_EXT2__: 1 308s _SVID_SOURCE: not defined 308s _THREAD_SAFE: not defined 308s _XOPEN_SOURCE: 700 308s _XOPEN_SOURCE_EXTENDED: defined 308s confstr: 308s _CS_GNU_LIBC_VERSION: 'glibc 2.40' 308s _CS_GNU_LIBPTHREAD_VERSION: 'NPTL 2.40' 308s _CS_LFS64_CFLAGS: '-D_LARGEFILE64_SOURCE' 308s _CS_LFS64_LDFLAGS: n/a 308s _CS_LFS64_LIBS: n/a 308s _CS_LFS64_LINTFLAGS: '-D_LARGEFILE64_SOURCE' 308s _CS_LFS_CFLAGS: n/a 308s _CS_LFS_LDFLAGS: n/a 308s _CS_LFS_LIBS: n/a 308s _CS_LFS_LINTFLAGS: n/a 308s _CS_PATH: '/bin:/usr/bin' 308s _CS_POSIX_V6_ILP32_OFF32_CFLAGS: n/a 308s _CS_POSIX_V6_ILP32_OFF32_LDFLAGS: n/a 308s _CS_POSIX_V6_ILP32_OFF32_LIBS: n/a 308s _CS_POSIX_V6_ILP32_OFF32_LINTFLAGS: n/a 308s _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS: n/a 308s _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS: n/a 308s _CS_POSIX_V6_ILP32_OFFBIG_LIBS: n/a 308s _CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS: n/a 308s _CS_POSIX_V6_LP64_OFF64_CFLAGS: '-m64' 308s _CS_POSIX_V6_LP64_OFF64_LDFLAGS: '-m64' 308s _CS_POSIX_V6_LP64_OFF64_LIBS: n/a 308s _CS_POSIX_V6_LP64_OFF64_LINTFLAGS: n/a 308s _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS: n/a 308s _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS: n/a 308s _CS_POSIX_V6_LPBIG_OFFBIG_LIBS: n/a 308s _CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS: n/a 308s _CS_POSIX_V7_ILP32_OFF32_CFLAGS: n/a 308s _CS_POSIX_V7_ILP32_OFF32_LDFLAGS: n/a 308s _CS_POSIX_V7_ILP32_OFF32_LIBS: n/a 308s _CS_POSIX_V7_ILP32_OFF32_LINTFLAGS: n/a 308s _CS_POSIX_V7_ILP32_OFFBIG_CFLAGS: n/a 308s _CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS: n/a 308s _CS_POSIX_V7_ILP32_OFFBIG_LIBS: n/a 308s _CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS: n/a 308s _CS_POSIX_V7_LP64_OFF64_CFLAGS: '-m64' 308s _CS_POSIX_V7_LP64_OFF64_LDFLAGS: '-m64' 308s _CS_POSIX_V7_LP64_OFF64_LIBS: n/a 308s _CS_POSIX_V7_LP64_OFF64_LINTFLAGS: n/a 308s _CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS: n/a 308s _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS: n/a 308s _CS_POSIX_V7_LPBIG_OFFBIG_LIBS: n/a 308s _CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS: n/a 308s _CS_V5_WIDTH_RESTRICTED_ENVS: 'XBS5_LP64_OFF64' 308s _XBS5_WIDTH_RESTRICTED_ENVS: 'XBS5_LP64_OFF64' 308s XBS5_WIDTH_RESTRICTED_ENVS: 'XBS5_LP64_OFF64' 308s _CS_V6_WIDTH_RESTRICTED_ENVS: 'POSIX_V6_LP64_OFF64' 308s POSIX_V6_WIDTH_RESTRICTED_ENVS,_POSIX_V6_WIDTH_RESTRICTED_ENVS: 'POSIX_V6_LP64_OFF64' 308s _CS_V7_WIDTH_RESTRICTED_ENVS: 'POSIX_V7_LP64_OFF64' 308s _CS_XBS5_ILP32_OFF32_CFLAGS: n/a 308s _CS_XBS5_ILP32_OFF32_LDFLAGS: n/a 308s _CS_XBS5_ILP32_OFF32_LIBS: n/a 308s _CS_XBS5_ILP32_OFF32_LINTFLAGS: n/a 308s _CS_XBS5_ILP32_OFFBIG_CFLAGS: n/a 308s _CS_XBS5_ILP32_OFFBIG_LDFLAGS: n/a 308s _CS_XBS5_ILP32_OFFBIG_LIBS: n/a 308s _CS_XBS5_ILP32_OFFBIG_LINTFLAGS: n/a 308s _CS_XBS5_LP64_OFF64_CFLAGS: '-m64' 308s _CS_XBS5_LP64_OFF64_LDFLAGS: '-m64' 308s _CS_XBS5_LP64_OFF64_LIBS: n/a 308s _CS_XBS5_LP64_OFF64_LINTFLAGS: n/a 308s _CS_XBS5_LPBIG_OFFBIG_CFLAGS: n/a 308s _CS_XBS5_LPBIG_OFFBIG_LDFLAGS: n/a 308s _CS_XBS5_LPBIG_OFFBIG_LIBS: n/a 308s _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS: n/a 308s cpu: 308s number: 1 of 2 308s affinity list: 0-1 308s scheduler: 308s type: SCHED_OTHER 308s priority: 308s process: 0 308s process group: 0 308s user: -20 308s I/O priority: 308s process: 308s class: IOPRIO_CLASS_NONE 308s priority: 0 308s group: 308s class: IOPRIO_CLASS_NONE 308s priority: 0 308s user: 308s class: IOPRIO_CLASS_NONE 308s priority: 0 308s environment: 308s ADTTMP: /tmp/autopkgtest.dghVVw/autopkgtest_tmp 308s ADT_ARTIFACTS: /tmp/autopkgtest.dghVVw/build-procenv-artifacts 308s ADT_NORMAL_USER: ubuntu 308s ADT_TEST_TRIGGERS: sudo/1.9.16p2-1ubuntu1 308s AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.dghVVw/build-procenv-artifacts 308s AUTOPKGTEST_NORMAL_USER: ubuntu 308s AUTOPKGTEST_TESTBED_ARCH: s390x 308s AUTOPKGTEST_TEST_ARCH: s390x 308s AUTOPKGTEST_TMP: /tmp/autopkgtest.dghVVw/autopkgtest_tmp 308s DEBIAN_FRONTEND: noninteractive 308s DEB_BUILD_OPTIONS: parallel=2 308s HOME: /root 308s LANG: C.UTF-8 308s LOGNAME: root 308s MAIL: /var/mail/root 308s OLDPWD: /home/ubuntu 308s PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin 308s PWD: /tmp/autopkgtest.dghVVw/build.oqW/src 308s SHELL: /bin/bash 308s SHLVL: 1 308s SUDO_COMMAND: /var/tmp/autopkgtest-run-wrapper su -s /bin/bash root -c set -e; exec /tmp/autopkgtest.dghVVw/wrapper.sh --debug --artifacts=/tmp/autopkgtest.dghVVw/build-procenv-artifacts --chdir=/tmp/autopkgtest.dghVVw/build.oqW/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.dghVVw/build-procenv-stderr --stdout=/tmp/autopkgtest.dghVVw/build-procenv-stdout --tmp=/tmp/autopkgtest.dghVVw/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=sudo/1.9.16p2-1ubuntu1 --make-executable=/tmp/autopkgtest.dghVVw/build.oqW/src/debian/tests/build-procenv -- /tmp/autopkgtest.dghVVw/build.oqW/src/debian/tests/build-procenv 308s SUDO_GID: 1000 308s SUDO_HOME: /home/ubuntu 308s SUDO_UID: 1000 308s SUDO_USER: ubuntu 308s TERM: linux 308s USER: root 308s http_proxy: http://squid.internal:3128 308s https_proxy: http://squid.internal:3128 308s 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 308s file descriptors: 308s 0: 308s terminal: no 308s valid: yes 308s device: pipe:[17116] 308s 1: 308s terminal: no 308s valid: yes 308s device: /tmp/tmp.so3G2Zv9KX/out 308s 2: 308s terminal: no 308s valid: yes 308s device: /tmp/tmp.so3G2Zv9KX/err 308s libc: 308s name: GNU libc (glibc) 308s version: 2 308s minor: 40 308s libraries: 308s linux-vdso64.so.1: 308s path: linux-vdso64.so.1 308s address: 0x3ffe30c5000 308s libselinux.so.1: 308s path: /lib/s390x-linux-gnu/libselinux.so.1 308s address: 0x3ff82f00000 308s libcap.so.2: 308s path: /lib/s390x-linux-gnu/libcap.so.2 308s address: 0x3ff82e80000 308s libc.so.6: 308s path: /lib/s390x-linux-gnu/libc.so.6 308s address: 0x3ff82c00000 308s libpcre2-8.so.0: 308s path: /lib/s390x-linux-gnu/libpcre2-8.so.0 308s address: 0x3ff82b00000 308s ld64.so.1: 308s path: /lib/ld64.so.1 308s address: 0x3ff83000000 308s limits: 308s RLIMIT_AS: 308s soft: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s hard: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s RLIMIT_CORE: 308s soft: 308s current: 0 308s max: 18446744073709551615 308s hard: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s RLIMIT_CPU: 308s soft: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s hard: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s RLIMIT_DATA: 308s soft: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s hard: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s RLIMIT_FSIZE: 308s soft: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s hard: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s RLIMIT_RTTIME: 308s soft: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s hard: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s RLIMIT_LOCKS: 308s soft: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s hard: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s RLIMIT_MEMLOCK: 308s soft: 308s current: 523898880 308s max: 18446744073709551615 308s hard: 308s current: 523898880 308s max: 18446744073709551615 308s RLIMIT_MSGQUEUE: 308s soft: 308s current: 819200 308s max: 18446744073709551615 308s hard: 308s current: 819200 308s max: 18446744073709551615 308s RLIMIT_NICE: 308s soft: 308s current: 0 308s max: 18446744073709551615 308s hard: 308s current: 0 308s max: 18446744073709551615 308s RLIMIT_NOFILE: 308s soft: 308s current: 1024 308s max: 18446744073709551615 308s hard: 308s current: 1073741816 308s max: 18446744073709551615 308s RLIMIT_NPROC: 308s soft: 308s current: 15897 308s max: 18446744073709551615 308s hard: 308s current: 15897 308s max: 18446744073709551615 308s RLIMIT_RSS: 308s soft: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s hard: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s RLIMIT_RTPRIO: 308s soft: 308s current: 0 308s max: 18446744073709551615 308s hard: 308s current: 0 308s max: 18446744073709551615 308s RLIMIT_SIGPENDING: 308s soft: 308s current: 15897 308s max: 18446744073709551615 308s hard: 308s current: 15897 308s max: 18446744073709551615 308s RLIMIT_STACK: 308s soft: 308s current: 8388608 308s max: 18446744073709551615 308s hard: 308s current: 18446744073709551615 308s max: 18446744073709551615 308s locale: 308s LANG: C.UTF-8 308s LANGUAGE: 308s LC_ADDRESS: C.UTF-8 308s LC_COLLATE: C.UTF-8 308s LC_CTYPE: C.UTF-8 308s LC_IDENTIFICATION: C.UTF-8 308s LC_MEASUREMENT: C.UTF-8 308s LC_MESSAGES: C.UTF-8 308s LC_MONETARY: C.UTF-8 308s LC_NAME: C.UTF-8 308s LC_NUMERIC: C.UTF-8 308s LC_PAPER: C.UTF-8 308s LC_TELEPHONE: C.UTF-8 308s LC_TIME: C.UTF-8 308s LC_ALL: 308s memory: 308s page size: 4096 bytes 308s numa: 308s message queues: 308s info: 308s msgpool: 0 308s msgmap: 0 308s msgmax: 8192 308s msgmnb: 16384 308s msgmni: 32000 308s msgssz: 16 308s msgtql: 0 308s msgseg: 65535 308s sets: 308s misc: 308s umask: 0022 308s current directory (cwd): '/tmp/autopkgtest.dghVVw/build.oqW/src' 308s root: '/' 308s chroot: no 308s container: no 308s vm: no 308s prctl: 308s process endian: unknown 308s dumpable: yes 308s floating point emulation: unknown 308s floating point exceptions: unknown 308s process name: procenv 308s parent death signal: disabled 308s secure computing: disabled 308s process timing: statistical 308s timestamp counter read: unknown 308s machine-check exception: system default 308s no new privileges: normal execve 308s timer slack: 50000ns 308s child subreaper: no 308s clear child tid address: 0x3ff 308s security module: 308s name: unknown 308s context: unknown 308s kernel headers version: 6.12.11 308s personality: 308s type: PER_LINUX 308s flags: 308s mounts: 308s /sys: 308s filesystem: 'sysfs' 308s canonical: unknown 308s type: 'sysfs' 308s options: 'rw,nosuid,nodev,noexec,relatime' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 22 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: ad3da427abe4d819 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /proc: 308s filesystem: 'proc' 308s canonical: unknown 308s type: 'proc' 308s options: 'rw,nosuid,nodev,noexec,relatime' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 23 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 0000000000000017 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /dev: 308s filesystem: 'udev' 308s canonical: unknown 308s type: 'devtmpfs' 308s options: 'rw,nosuid,relatime,size=2034672k,nr_inodes=508668,mode=755,inode64' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 6 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 5028d9e76cc43b82 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 2034672 308s used: 0 308s free: 2034672 308s available: 2034672 308s files/inodes: 308s total: 508668 308s used: 300 308s free: 508368 308s /dev/pts: 308s filesystem: 'devpts' 308s canonical: unknown 308s type: 'devpts' 308s options: 'rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 0 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 24 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 0000000000000018 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /run: 308s filesystem: 'tmpfs' 308s canonical: unknown 308s type: 'tmpfs' 308s options: 'rw,nosuid,nodev,noexec,relatime,size=409300k,mode=755,inode64' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 25 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 64f2decb561ff4e0 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 409300 308s used: 320 308s free: 408980 308s available: 408980 308s files/inodes: 308s total: 511620 308s used: 488 308s free: 511132 308s /: 308s filesystem: '/dev/vda1' 308s canonical: unknown 308s type: 'ext4' 308s options: 'rw,relatime,discard,errors=remount-ro,commit=30' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 64 308s _PC_LINK_MAX: 65000 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 253 308s minor: 1 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 124be179c6922e6c 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 20252352 308s used: 2452236 308s free: 17800116 308s available: 17783732 308s files/inodes: 308s total: 2560000 308s used: 77503 308s free: 2482497 308s /sys/kernel/security: 308s filesystem: 'securityfs' 308s canonical: unknown 308s type: 'securityfs' 308s options: 'rw,nosuid,nodev,noexec,relatime' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 7 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 0000000000000007 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /dev/shm: 308s filesystem: 'tmpfs' 308s canonical: unknown 308s type: 'tmpfs' 308s options: 'rw,nosuid,nodev,inode64' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 26 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: e4473ffdda2b0489 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 2046480 308s used: 0 308s free: 2046480 308s available: 2046480 308s files/inodes: 308s total: 511620 308s used: 1 308s free: 511619 308s /sys/fs/cgroup: 308s filesystem: 'cgroup2' 308s canonical: unknown 308s type: 'cgroup2' 308s options: 'rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 27 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 7e9f0ff946463023 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /sys/fs/bpf: 308s filesystem: 'bpf' 308s canonical: unknown 308s type: 'bpf' 308s options: 'rw,nosuid,nodev,noexec,relatime,mode=700' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 28 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 000000000000001c 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /proc/sys/fs/binfmt_misc: 308s filesystem: 'systemd-1' 308s canonical: unknown 308s type: 'autofs' 308s options: 'rw,relatime,fd=35,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=1933' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 42 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 000000000000002a 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /sys/kernel/tracing: 308s filesystem: 'tracefs' 308s canonical: unknown 308s type: 'tracefs' 308s options: 'rw,nosuid,nodev,noexec,relatime' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 13 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 000000000000000d 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /dev/mqueue: 308s filesystem: 'mqueue' 308s canonical: unknown 308s type: 'mqueue' 308s options: 'rw,nosuid,nodev,noexec,relatime' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 20 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 0000000000000014 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /run/lock: 308s filesystem: 'tmpfs' 308s canonical: unknown 308s type: 'tmpfs' 308s options: 'rw,nosuid,nodev,noexec,relatime,size=5120k,inode64' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 30 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 2111563472a68cc2 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 5120 308s used: 0 308s free: 5120 308s available: 5120 308s files/inodes: 308s total: 511620 308s used: 5 308s free: 511615 308s /sys/kernel/debug: 308s filesystem: 'debugfs' 308s canonical: unknown 308s type: 'debugfs' 308s options: 'rw,nosuid,nodev,noexec,relatime' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 8 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 0000000000000008 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /dev/hugepages: 308s filesystem: 'hugetlbfs' 308s canonical: unknown 308s type: 'hugetlbfs' 308s options: 'rw,nosuid,nodev,relatime,pagesize=1M' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 1048576 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 1048576 308s _PC_REC_XFER_ALIGN: 1048576 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 31 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 000000000000001f 308s optimal block size: 1048576 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /run/credentials/systemd-journald.service: 308s filesystem: 'tmpfs' 308s canonical: unknown 308s type: 'tmpfs' 308s options: 'ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 32 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 9cb9be2fc42494b4 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 1024 308s used: 0 308s free: 1024 308s available: 1024 308s files/inodes: 308s total: 1024 308s used: 1 308s free: 1023 308s /sys/kernel/config: 308s filesystem: 'configfs' 308s canonical: unknown 308s type: 'configfs' 308s options: 'rw,nosuid,nodev,noexec,relatime' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 21 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 0000000000000015 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /sys/fs/fuse/connections: 308s filesystem: 'fusectl' 308s canonical: unknown 308s type: 'fusectl' 308s options: 'rw,nosuid,nodev,noexec,relatime' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 34 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 0000000000000022 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /run/credentials/systemd-resolved.service: 308s filesystem: 'tmpfs' 308s canonical: unknown 308s type: 'tmpfs' 308s options: 'ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 38 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: ae82e9dabc86e3c6 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 1024 308s used: 0 308s free: 1024 308s available: 1024 308s files/inodes: 308s total: 1024 308s used: 1 308s free: 1023 308s /proc/sys/fs/binfmt_misc: 308s filesystem: 'binfmt_misc' 308s canonical: unknown 308s type: 'binfmt_misc' 308s options: 'rw,nosuid,nodev,noexec,relatime' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 42 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 000000000000002a 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 0 308s used: 0 308s free: 0 308s available: 0 308s files/inodes: 308s total: 0 308s used: 0 308s free: 0 308s /run/credentials/systemd-networkd.service: 308s filesystem: 'tmpfs' 308s canonical: unknown 308s type: 'tmpfs' 308s options: 'ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 43 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 9e363c4b8b275bc4 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 1024 308s used: 0 308s free: 1024 308s available: 1024 308s files/inodes: 308s total: 1024 308s used: 1 308s free: 1023 308s /run/credentials/getty@tty1.service: 308s filesystem: 'tmpfs' 308s canonical: unknown 308s type: 'tmpfs' 308s options: 'ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 46 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: 21f5053c4b80afa1 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 1024 308s used: 0 308s free: 1024 308s available: 1024 308s files/inodes: 308s total: 1024 308s used: 1 308s free: 1023 308s /run/user/1000: 308s filesystem: 'tmpfs' 308s canonical: unknown 308s type: 'tmpfs' 308s options: 'rw,nosuid,nodev,relatime,size=409296k,nr_inodes=102324,mode=700,uid=1000,gid=1000,inode64' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 48 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: c44226ce59e14d4b 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 409296 308s used: 4 308s free: 409292 308s available: 409292 308s files/inodes: 308s total: 102324 308s used: 24 308s free: 102300 308s /run/credentials/serial-getty@ttysclp0.service: 308s filesystem: 'tmpfs' 308s canonical: unknown 308s type: 'tmpfs' 308s options: 'ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap' 308s pathconf: 308s _PC_ALLOC_SIZE_MIN: 4096 308s _PC_ASYNC_IO: n/a 308s _PC_CHOWN_RESTRICTED: 1 308s _PC_FILESIZEBITS: 32 308s _PC_LINK_MAX: 127 308s _PC_MAX_CANON: 255 308s _PC_MAX_INPUT: 255 308s _PC_NAME_MAX: 255 308s _PC_NO_TRUNC: 1 308s _PC_PATH_MAX: 4096 308s _PC_PIPE_BUF: 4096 308s _PC_PRIO_IO: n/a 308s _PC_REC_INCR_XFER_SIZE: n/a 308s _PC_REC_MAX_XFER_SIZE: n/a 308s _PC_REC_MIN_XFER_SIZE: 4096 308s _PC_REC_XFER_ALIGN: 4096 308s _PC_SOCK_MAXBUF: n/a 308s _PC_SYMLINK_MAX: n/a 308s _PC_2_SYMLINKS: 1 308s _PC_SYNC_IO: n/a 308s _PC_VDISABLE: 0 308s device: 308s major: 0 308s minor: 49 308s dump frequency: 0 308s fsck pass number: 0 308s fsid: d0c7ef83e72999ad 308s optimal block size: 4096 308s blocks: 308s size: 1024 bytes 308s total: 1024 308s used: 0 308s free: 1024 308s available: 1024 308s files/inodes: 308s total: 1024 308s used: 1 308s free: 1023 308s namespaces: 308s cgroup: 4026531835 308s ipc: 4026531839 308s mnt: 4026531841 308s net: 4026531840 308s pid: 4026531836 308s pid: 4026531836 308s time: 4026531834 308s time: 4026531834 308s user: 4026531837 308s uts: 4026531838 308s network: 308s lo: 308s family: AF_INET (0x2) 308s flags: 308s value: 0x10049 308s fields: 308s IFF_UP: 0x1 308s IFF_LOOPBACK: 0x8 308s IFF_RUNNING: 0x40 308s IFF_LOWER_UP: 0x10000 308s extended flags: 308s value: 0x0 308s fields: 308s mac: n/a 308s mtu: 65536 308s address: 127.0.0.1 308s netmask: 255.0.0.0 308s enc1: 308s family: AF_INET (0x2) 308s flags: 308s value: 0x11043 308s fields: 308s IFF_UP: 0x1 308s IFF_BROADCAST: 0x2 308s IFF_RUNNING: 0x40 308s IFF_MULTICAST: 0x1000 308s IFF_LOWER_UP: 0x10000 308s extended flags: 308s value: 0x0 308s fields: 308s mac: fa:16:3e:dc:f4:e1 308s mtu: 1500 308s address: 10.145.232.40 308s netmask: 255.255.255.0 308s broadcast: 10.145.232.255 308s lo: 308s family: AF_INET6 (0xa) 308s flags: 308s value: 0x10049 308s fields: 308s IFF_UP: 0x1 308s IFF_LOOPBACK: 0x8 308s IFF_RUNNING: 0x40 308s IFF_LOWER_UP: 0x10000 308s extended flags: 308s value: 0x0 308s fields: 308s mac: n/a 308s mtu: 65536 308s address: ::1 308s netmask: ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff 308s enc1: 308s family: AF_INET6 (0xa) 308s flags: 308s value: 0x11043 308s fields: 308s IFF_UP: 0x1 308s IFF_BROADCAST: 0x2 308s IFF_RUNNING: 0x40 308s IFF_MULTICAST: 0x1000 308s IFF_LOWER_UP: 0x10000 308s extended flags: 308s value: 0x0 308s fields: 308s mac: n/a 308s mtu: 1500 308s address: fe80::f816:3eff:fedc:f4e1%enc1 308s netmask: ffff:ffff:ffff:ffff:: 308s oom: 308s oom_score: 666 308s oom_adj: 0 308s oom_score_adj: 0 308s platform: 308s operating system: Linux (zSeries) 308s architecture: SystemZ 308s kernel bits: 64 308s executable bits: 64 308s code endian: big 308s data model: LP64 (4/8/8) 308s process: 308s process id (pid): 20427 308s parent process id (ppid): 3234 308s session id (sid): 3211 (leader=no) 308s name: 'procenv' 308s ancestry: 20427 ('procenv'), 3234 ('build-procenv'), 3215 ('wrapper.sh'), 3214 ('su'), 3212 ('autopkgtest-run'), 3211 ('sudo'), 867 ('sshd-session'), 804 ('sshd-session'), 796 ('sshd'), 1 ('systemd') 308s process group id: 3211 (leader=no) 308s foreground process group: -1 308s terminal: '/dev/tty' 308s has controlling terminal: no 308s on console: no 308s user: 308s real user id (uid): 0 ('root') 308s effective user id (euid): 0 ('root') 308s saved set-user-id (suid): 0 ('root') 308s group: 308s real group id (gid): 0 ('root') 308s effective group id (egid): 0 ('root') 308s saved set-group-id (sgid): 0 ('root') 308s login name: 'ubuntu' 308s passwd: 308s name: 'root' 308s gecos: 'root' 308s dir: '/root' 308s shell: '/bin/bash' 308s groups: 'root' (0) 308s ranges: 308s char: 308s size: 1 byte 308s unsigned: 308s decimal: 0 to 255 308s symbolic: 0 to UCHAR_MAX 308s scientific: 0.000000e+00 to 2.550000e+02 308s hex: 0x00 to 0xff 308s signed: 308s decimal: -128 to 127 308s symbolic: SCHAR_MIN to SCHAR_MAX 308s short int: 308s size: 2 bytes 308s unsigned: 308s decimal: 0 to 65535 308s symbolic: 0 to USHRT_MAX 308s scientific: 0.000000e+00 to 6.553500e+04 308s hex: 0x0000 to 0xffff 308s signed: 308s decimal: -32768 to 32767 308s symbolic: SHRT_MIN to SHRT_MAX 308s int: 308s size: 4 bytes 308s unsigned: 308s decimal: 0 to 4294967295 308s symbolic: 0 to UINT_MAX 308s scientific: 0.000000e+00 to 4.294967e+09 308s hex: 0x00000000 to 0xffffffff 308s signed: 308s decimal: -2147483648 to 2147483647 308s symbolic: INT_MIN to INT_MAX 308s long int: 308s size: 8 bytes 308s unsigned: 308s decimal: 0 to 4294967295 308s symbolic: 0 to ULONG_MAX 308s scientific: 0.000000e+00 to 1.844674e+19 308s hex: 0x0000000000000000 to 0x00000000ffffffff 308s signed: 308s decimal: -9223372036854775808 to 9223372036854775807 308s symbolic: LONG_MIN to LONG_MAX 308s long long int: 308s size: 8 bytes 308s unsigned: 308s decimal: 0 to 18446744073709551615 308s symbolic: 0 to ULLONG_MAX 308s scientific: 0.000000e+00 to 1.844674e+19 308s hex: 0x0000000000000000 to 0xffffffffffffffff 308s signed: 308s decimal: -9223372036854775808 to 9223372036854775807 308s symbolic: LLONG_MIN to LLONG_MAX 308s float: 308s size: 4 bytes 308s signed: 1.175494e-38 to 3.402823e+38 308s symbolic: FLT_MIN to FLT_MAX 308s double: 308s size: 8 bytes 308s signed: 2.225074e-308 to 1.797693e+308 308s symbolic: DBL_MIN to DBL_MAX 308s long double: 308s size: 16 bytes 308s signed: 3.362103e-4932 to 1.189731e+4932 308s symbolic: LDBL_MIN to LDBL_MAX 308s rusage: 308s ru_maxrss: 3092 308s ru_ixrss: 0 308s ru_idrss: 0 308s ru_isrss: 0 308s ru_minflt: 214 308s ru_majflt: 0 308s ru_nswap: 0 308s ru_inblock: 0 308s ru_oublock: 0 308s ru_msgsnd: 0 308s ru_msgrcv: 0 308s ru_nsignals: 0 308s ru_nvcsw: 0 308s ru_nivcsw: 1 308s semaphores: 308s info: 308s semmap: 1024000000 308s semmni: 32000 308s semmns: 1024000000 308s semmnu: 1024000000 308s semmsl: 32000 308s semopm: 500 308s semume: 500 308s semusz: 0 308s semvmx: 32767 308s semaem: 0 308s set: 308s shared memory: 308s info: 308s segments: 0 308s pages: 0 308s shm_rss: 0 308s shm_swp: 0 308s swap_attempts: 0 308s swap_successes: 0 308s segments: 308s signals: 308s SIGHUP: 308s number: 1 308s description: 'Hangup' 308s blocked: no 308s ignored: no 308s SIGINT: 308s number: 2 308s description: 'Interrupt' 308s blocked: no 308s ignored: no 308s SIGQUIT: 308s number: 3 308s description: 'Quit' 308s blocked: no 308s ignored: no 308s SIGILL: 308s number: 4 308s description: 'Illegal instruction' 308s blocked: no 308s ignored: no 308s SIGTRAP: 308s number: 5 308s description: 'Trace/breakpoint trap' 308s blocked: no 308s ignored: no 308s SIGABRT: 308s number: 6 308s description: 'Aborted' 308s blocked: no 308s ignored: no 308s SIGBUS: 308s number: 7 308s description: 'Bus error' 308s blocked: no 308s ignored: no 308s SIGFPE: 308s number: 8 308s description: 'Floating point exception' 308s blocked: no 308s ignored: no 308s SIGKILL: 308s number: 9 308s description: 'Killed' 308s blocked: no 308s ignored: no 308s SIGUSR1: 308s number: 10 308s description: 'User defined signal 1' 308s blocked: no 308s ignored: no 308s SIGSEGV: 308s number: 11 308s description: 'Segmentation fault' 308s blocked: no 308s ignored: no 308s SIGUSR2: 308s number: 12 308s description: 'User defined signal 2' 308s blocked: no 308s ignored: no 308s SIGPIPE: 308s number: 13 308s description: 'Broken pipe' 308s blocked: no 308s ignored: no 308s SIGALRM: 308s number: 14 308s description: 'Alarm clock' 308s blocked: no 308s ignored: no 308s SIGTERM: 308s number: 15 308s description: 'Terminated' 308s blocked: no 308s ignored: no 308s SIGSTKFLT: 308s number: 16 308s description: 'Stack fault' 308s blocked: no 308s ignored: no 308s SIGCHLD|SIGCLD: 308s number: 17 308s description: 'Child exited' 308s blocked: no 308s ignored: no 308s SIGCONT: 308s number: 18 308s description: 'Continued' 308s blocked: no 308s ignored: no 308s SIGSTOP: 308s number: 19 308s description: 'Stopped (signal)' 308s blocked: no 308s ignored: no 308s SIGTSTP: 308s number: 20 308s description: 'Stopped' 308s blocked: no 308s ignored: no 308s SIGTTIN: 308s number: 21 308s description: 'Stopped (tty input)' 308s blocked: no 308s ignored: no 308s SIGTTOU: 308s number: 22 308s description: 'Stopped (tty output)' 308s blocked: no 308s ignored: no 308s SIGURG: 308s number: 23 308s description: 'Urgent I/O condition' 308s blocked: no 308s ignored: no 308s SIGXCPU: 308s number: 24 308s description: 'CPU time limit exceeded' 308s blocked: no 308s ignored: no 308s SIGXFSZ: 308s number: 25 308s description: 'File size limit exceeded' 308s blocked: no 308s ignored: no 308s SIGVTALRM: 308s number: 26 308s description: 'Virtual timer expired' 308s blocked: no 308s ignored: no 308s SIGPROF: 308s number: 27 308s description: 'Profiling timer expired' 308s blocked: no 308s ignored: no 308s SIGWINCH: 308s number: 28 308s description: 'Window changed' 308s blocked: no 308s ignored: no 308s SIGIO: 308s number: 29 308s description: 'I/O possible' 308s blocked: no 308s ignored: no 308s SIGPWR: 308s number: 30 308s description: 'Power failure' 308s blocked: no 308s ignored: no 308s SIGSYS: 308s number: 31 308s description: 'Bad system call' 308s blocked: no 308s ignored: no 308s sizeof: 308s bits/byte (CHAR_BIT): 8 308s blkcnt_t: 8 bytes 308s blksize_t: 8 bytes 308s char: 1 byte 308s clockid_t: 4 bytes 308s clock_t: 8 bytes 308s dev_t: 8 bytes 308s div_t: 8 bytes 308s double: 8 bytes 308s fenv_t: 16 bytes 308s fexcept_t: 4 bytes 308s float: 4 bytes 308s fpos_t: 16 bytes 308s fsblkcnt_t: 8 bytes 308s fsfilcnt_t: 8 bytes 308s gid_t: 4 bytes 308s id_t: 4 bytes 308s imaxdiv_t: 16 bytes 308s ino_t: 8 bytes 308s int: 4 bytes 308s int16_t: 2 bytes 308s int32_t: 4 bytes 308s int64_t: 8 bytes 308s int8_t: 1 byte 308s int_fast16_t: 8 bytes 308s int_fast32_t: 8 bytes 308s int_fast64_t: 8 bytes 308s int_fast8_t: 1 byte 308s int_least16_t: 2 bytes 308s int_least32_t: 4 bytes 308s int_least64_t: 8 bytes 308s int_least8_t: 1 byte 308s intmax_t: 8 bytes 308s intptr_t: 8 bytes 308s key_t: 4 bytes 308s ldiv_t: 16 bytes 308s lldiv_t: 16 bytes 308s long double: 16 bytes 308s long int: 8 bytes 308s long long int: 8 bytes 308s mbstate_t: 8 bytes 308s mode_t: 4 bytes 308s mode_t: 4 bytes 308s nlink_t: 8 bytes 308s off_t: 8 bytes 308s pid_t: 4 bytes 308s pthread_attr_t: 56 bytes 308s pthread_barrierattr_t: 4 bytes 308s pthread_barrier_t: 32 bytes 308s pthread_condattr_t: 4 bytes 308s pthread_cond_t: 48 bytes 308s pthread_key_t: 4 bytes 308s pthread_mutexattr_t: 4 bytes 308s pthread_mutex_t: 40 bytes 308s pthread_once_t: 4 bytes 308s pthread_rwlockattr_t: 8 bytes 308s pthread_rwlock_t: 56 bytes 308s pthread_spinlock_t: 4 bytes 308s pthread_t: 8 bytes 308s ptrdiff_t: 8 bytes 308s rlim_t: 8 bytes 308s short int: 2 bytes 308s sig_atomic_t: 4 bytes 308s size_t: 8 bytes 308s ssize_t: 8 bytes 308s suseconds_t: 8 bytes 308s timer_t: 8 bytes 308s time_t: 8 bytes 308s uid_t: 4 bytes 308s uint16_t: 2 bytes 308s uint32_t: 4 bytes 308s uint64_t: 8 bytes 308s uint8_t: 1 byte 308s uint_fast16_t: 8 bytes 308s uint_fast32_t: 8 bytes 308s uint_fast64_t: 8 bytes 308s uint_fast8_t: 1 byte 308s uint_least16_t: 2 bytes 308s uint_least32_t: 4 bytes 308s uint_least64_t: 8 bytes 308s uint_least8_t: 1 byte 308s uintmax_t: 8 bytes 308s uintptr_t: 8 bytes 308s useconds_t: 4 bytes 308s void *: 8 bytes 308s wchar_t: 4 bytes 308s wint_t: 4 bytes 308s stat: 308s argv[0]: 'procenv' 308s real path: '/usr/bin/procenv' 308s device: 308s major: 253 308s minor: 1 308s inode: 7909 308s permissions: 308s octal: 0755 308s symbolic: -rwxr-xr-x 308s hard links: 1 308s user id (uid): 0 ('root') 308s group id (gid): 0 ('root') 308s size: 185872 bytes (368 512-byte blocks) 308s times: 308s atime (access): 1740010654 (Thu Feb 20 00:17:34 2025) 308s mtime (modification): 1607694716 (Fri Dec 11 13:51:56 2020) 308s ctime (status change): 1740010653 (Thu Feb 20 00:17:33 2025) 308s sysconf: 308s _SC_2_C_BIND: 200809 308s _SC_2_C_DEV: 200809 308s _SC_2_CHAR_TERM: 200809 308s _SC_2_C_VERSION: 200809 308s _SC_2_FORT_DEV: n/a 308s _SC_2_FORT_RUN: n/a 308s _SC_2_LOCALEDEF: 200809 308s _SC_2_PBS: n/a 308s _SC_2_PBS_ACCOUNTING: n/a 308s _SC_2_PBS_LOCATE: n/a 308s _SC_2_PBS_MESSAGE: n/a 308s _SC_2_PBS_TRACK: n/a 308s _SC_2_SW_DEV: 200809 308s _SC_2_UPE: n/a 308s _SC_2_VERSION: 200809 308s _SC_ADVISORY_INFO: 200809 308s _SC_AIO_LISTIO_MAX: n/a 308s _SC_AIO_MAX: n/a 308s _SC_AIO_PRIO_DELTA_MAX: 20 308s _SC_ARG_MAX: 2097152 308s _SC_ASYNCHRONOUS_IO: 200809 308s _SC_ATEXIT_MAX: 2147483647 308s _SC_AVPHYS_PAGES: 658131 308s _SC_BARRIERS: 200809 308s _SC_BASE: n/a 308s _SC_BC_BASE_MAX: 99 308s _SC_BC_DIM_MAX: 2048 308s _SC_BC_SCALE_MAX: 99 308s _SC_BC_STRING_MAX: 1000 308s _SC_CHAR_BIT: 8 308s _SC_CHARCLASS_NAME_MAX: 2048 308s _SC_CHAR_MAX: 255 308s _SC_CHAR_MIN: 0 308s _SC_CHILD_MAX: 15897 308s _SC_C_LANG_SUPPORT: n/a 308s _SC_C_LANG_SUPPORT_R: n/a 308s _SC_CLK_TCK: 100 308s _SC_CLOCK_SELECTION: 200809 308s _SC_COLL_WEIGHTS_MAX: 255 308s _SC_CPUTIME: 200809 308s _SC_DELAYTIMER_MAX: 2147483647 308s _SC_DEVICE_IO: n/a 308s _SC_DEVICE_SPECIFIC: n/a 308s _SC_DEVICE_SPECIFIC_R: n/a 308s _SC_EQUIV_CLASS_MAX: n/a 308s _SC_EXPR_NEST_MAX: 32 308s _SC_FD_MGMT: n/a 308s _SC_FIFO: n/a 308s _SC_FILE_ATTRIBUTES: n/a 308s _SC_FILE_LOCKING: n/a 308s _SC_FILE_SYSTEM: n/a 308s _SC_FSYNC: 200809 308s _SC_GETGR_R_SIZE_MAX: 1024 308s _SC_GETPW_R_SIZE_MAX: 1024 308s _SC_HOST_NAME_MAX: 64 308s _SC_INT_MAX: 2147483647 308s _SC_INT_MIN: -2147483648 308s _SC_IOV_MAX: 1024 308s _SC_IPV6: 200809 308s _SC_JOB_CONTROL: 1 308s _SC_LEVEL1_DCACHE_ASSOC: 8 308s _SC_LEVEL1_DCACHE_LINESIZE: 256 308s _SC_LEVEL1_DCACHE_SIZE: 131072 308s _SC_LEVEL1_ICACHE_ASSOC: 8 308s _SC_LEVEL1_ICACHE_LINESIZE: 256 308s _SC_LEVEL1_ICACHE_SIZE: 131072 308s _SC_LEVEL2_CACHE_ASSOC: 8 308s _SC_LEVEL2_CACHE_LINESIZE: 256 308s _SC_LEVEL2_CACHE_SIZE: 4194304 308s _SC_LEVEL3_CACHE_ASSOC: 32 308s _SC_LEVEL3_CACHE_LINESIZE: 256 308s _SC_LEVEL3_CACHE_SIZE: 268435456 308s _SC_LEVEL4_CACHE_ASSOC: 60 308s _SC_LEVEL4_CACHE_LINESIZE: 256 308s _SC_LEVEL4_CACHE_SIZE: 1006632960 308s _SC_LINE_MAX: 2048 308s _SC_LOGIN_NAME_MAX: 256 308s _SC_LONG_BIT: 64 308s _SC_MAPPED_FILES: 200809 308s _SC_MB_LEN_MAX: 16 308s _SC_MEMLOCK: 200809 308s _SC_MEMLOCK_RANGE: 200809 308s _SC_MEMORY_PROTECTION: 200809 308s _SC_MESSAGE_PASSING: 200809 308s _SC_MONOTONIC_CLOCK: 200809 308s _SC_MQ_OPEN_MAX: n/a 308s _SC_MQ_PRIO_MAX: 32768 308s _SC_MULTI_PROCESS: n/a 308s _SC_NETWORKING: n/a 308s _SC_NGROUPS_MAX: 65536 308s _SC_NL_ARGMAX: 4096 308s _SC_NL_LANGMAX: 2048 308s _SC_NL_MSGMAX: 2147483647 308s _SC_NL_NMAX: 2147483647 308s _SC_NL_SETMAX: 2147483647 308s _SC_NL_TEXTMAX: 2147483647 308s _SC_NPROCESSORS_CONF: 2 308s _SC_NPROCESSORS_ONLN: 2 308s _SC_NZERO: 20 308s _SC_OPEN_MAX: 1024 308s _SC_PAGESIZE: 4096 308s _SC_PAGE_SIZE: 4096 308s _SC_PASS_MAX: 8192 308s _SC_PHYS_PAGES: 1023241 308s _SC_PII: n/a 308s _SC_PII_INTERNET: n/a 308s _SC_PII_INTERNET_DGRAM: n/a 308s _SC_PII_INTERNET_STREAM: n/a 308s _SC_PII_OSI: n/a 308s _SC_PII_OSI_CLTS: n/a 308s _SC_PII_OSI_COTS: n/a 308s _SC_PII_OSI_M: n/a 308s _SC_PII_SOCKET: n/a 308s _SC_PII_XTI: n/a 308s _SC_PIPE: n/a 308s _SC_POLL: n/a 308s _SC_SINGLE_PROCESS: n/a 308s _SC_SYSTEM_DATABASE: n/a 308s _SC_SYSTEM_DATABASE_R: n/a 308s _SC_THREAD_KEYS_MAX: 1024 308s _SC_THREAD_DESTRUCTOR_ITERATIONS: 4 308s _SC_THREAD_THREADS_MAX: n/a 308s _SC_STREAM_MAX: 16 308s _SC_SYMLOOP_MAX: n/a 308s _SC_TTY_NAME_MAX: 32 308s _SC_TZNAME_MAX: n/a 308s _SC_TYPED_MEMORY_OBJECTS: n/a 308s _SC_USER_GROUPS: n/a 308s _SC_USER_GROUPS_R: n/a 308s _SC_VERSION: 200809 308s _SC_SIGQUEUE_MAX: 15897 308s _SC_T_IOV_MAX: n/a 308s _SC_THREAD_STACK_MIN: 16384 308s _SC_SSIZE_MAX: 32767 308s _SC_TIMER_MAX: n/a 308s _SC_UCHAR_MAX: 255 308s _SC_UINT_MAX: 4294967295 308s _SC_UIO_MAXIOV: 1024 308s _SC_ULONG_MAX: n/a 308s _SC_USHRT_MAX: 65535 308s _SC_V6_LPBIG_OFFBIG: n/a 308s _SC_WORD_BIT: 32 308s _SC_EXPR_NEST_MAX: 32 308s _SC_V6_ILP32_OFF32: n/a 308s _SC_V6_ILP32_OFFBIG: n/a 308s _SC_V6_LP64_OFF64: 1 308s _SC_V7_ILP32_OFF32: n/a 308s _SC_V7_ILP32_OFFBIG: n/a 308s _SC_V7_LPBIG_OFFBIG: n/a 308s _SC_V7_LP64_OFF64: 1 308s _SC_PRIORITIZED_IO: 200809 308s _SC_PRIORITY_SCHEDULING: 200809 308s _SC_RAW_SOCKETS: 200809 308s _SC_READER_WRITER_LOCKS: 200809 308s _SC_REALTIME_SIGNALS: 200809 308s _SC_RE_DUP_MAX: 32767 308s _SC_REGEXP: 1 308s _SC_REGEX_VERSION: n/a 308s _SC_RTSIG_MAX: 32 308s _SC_SAVED_IDS: 1 308s _SC_SCHAR_MAX: 127 308s _SC_SCHAR_MIN: -128 308s _SC_SELECT: n/a 308s _SC_SEMAPHORES: 200809 308s _SC_SEM_NSEMS_MAX: n/a 308s _SC_SEM_VALUE_MAX: 2147483647 308s _SC_SHARED_MEMORY_OBJECTS: 200809 308s _SC_SHELL: 1 308s _SC_SHRT_MAX: 32767 308s _SC_SHRT_MIN: -32768 308s _SC_SIGNALS: n/a 308s _SC_SPAWN: 200809 308s _SC_SPIN_LOCKS: 200809 308s _SC_SPORADIC_SERVER: n/a 308s _SC_SYNCHRONIZED_IO: 200809 308s _SC_THREAD_ATTR_STACKADDR: 200809 308s _SC_THREAD_ATTR_STACKSIZE: 200809 308s _SC_THREAD_CPUTIME: 200809 308s _SC_THREAD_PRIO_INHERIT: 200809 308s _SC_THREAD_PRIO_PROTECT: 200809 308s _SC_THREAD_PRIORITY_SCHEDULING: 200809 308s _SC_THREAD_PROCESS_SHARED: 200809 308s _SC_THREAD_ROBUST_PRIO_INHERIT: n/a 308s _SC_THREAD_ROBUST_PRIO_PROTECT: n/a 308s _SC_THREAD_SAFE_FUNCTIONS: 200809 308s _SC_THREAD_SPORADIC_SERVER: n/a 308s _SC_THREADS: 200809 308s _SC_TIMEOUTS: 200809 308s _SC_TIMERS: 200809 308s _SC_TRACE: n/a 308s _SC_TRACE_EVENT_FILTER: n/a 308s _SC_TRACE_INHERIT: n/a 308s _SC_TRACE_LOG: n/a 308s _SC_XBS5_ILP32_OFF32: n/a 308s _SC_XBS5_ILP32_OFFBIG: n/a 308s _SC_XBS5_LP64_OFF64: 1 308s _SC_XBS5_LPBIG_OFFBIG: n/a 308s _SC_XOPEN_CRYPT: n/a 308s _SC_XOPEN_ENH_I18N: 1 308s _SC_XOPEN_LEGACY: 1 308s _SC_XOPEN_REALTIME: 1 308s _SC_XOPEN_REALTIME_THREADS: 1 308s _SC_XOPEN_SHM: 1 308s _SC_XOPEN_UNIX: 1 308s _SC_XOPEN_XPG2: 1 308s _SC_XOPEN_XPG3: 1 308s _SC_XOPEN_XPG4: 1 308s _SC_XOPEN_VERSION: 700 308s _SC_XOPEN_XCU_VERSION: 4 308s threads: 308s stack size: 8388608 bytes 308s scope: PTHREAD_SCOPE_SYSTEM 308s guard size: 4096 bytes 308s scheduler: 308s type: SCHED_OTHER 308s priority: 0 308s inherit-scheduler attribute: PTHREAD_INHERIT_SCHED 308s concurrency: 0 308s time: 308s raw: 1740010654.493481598 308s local: Thu Feb 20 00:17:34 2025 308s ISO: 2025-01-20T00:17 308s timezone: 308s tzname[0]: 'UTC' 308s tzname[1]: 'UTC' 308s timezone: 0 308s daylight: 0 308s tty: 308s uname: 308s sysname: Linux 308s nodename: autopkgtest 308s release: 6.12.0-15-generic 308s version: #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 308s machine: s390x 308s domainname: (none) 308s INFO: Establishing schroot sessions for chroot 'plucky-s390x-sbuild' 308s INFO: No schroot session to end 308s INFO: Cleaning up 308s INFO: Removing sbuild chroot symbolic link for 'plucky-s390x-sbuild' 308s INFO: Removing schroot configuration file for 'plucky-s390x-sbuild' 308s INFO: SUCCESS 308s /tmp/autopkgtest.dghVVw/wrapper.sh: checking for leaked background processes... 308s /tmp/autopkgtest.dghVVw/wrapper.sh: waiting for tee/cat subprocesses... 308s /tmp/autopkgtest.dghVVw/wrapper.sh: cleaning up... 308s /tmp/autopkgtest.dghVVw/wrapper.sh: Exit status: 0 308s autopkgtest: DBG: testbed command exited with code 0 308s autopkgtest [00:17:34]: test build-procenv: -----------------------] 308s autopkgtest: DBG: testbed executing test finished with exit status 0 308s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dghVVw/build-procenv-stdout /tmp/autopkgtest-work.5m_u5fw5/out/build-procenv-stdout 309s autopkgtest: DBG: got reply from testbed: ok 309s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dghVVw/build-procenv-stderr /tmp/autopkgtest-work.5m_u5fw5/out/build-procenv-stderr 309s autopkgtest: DBG: got reply from testbed: ok 309s autopkgtest [00:17:35]: test build-procenv: - - - - - - - - - - results - - - - - - - - - - 309s build-procenv PASS 309s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dghVVw/build-procenv-artifacts/ /tmp/autopkgtest-work.5m_u5fw5/out/artifacts/ 309s autopkgtest: DBG: got reply from testbed: ok 309s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.dghVVw/build-procenv-artifacts', '/tmp/autopkgtest.dghVVw/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 310s autopkgtest: DBG: testbed command exited with code 0 310s autopkgtest [00:17:36]: test unshare: preparing testbed 310s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['apt', 'apt-utils', 'debootstrap', 'distro-info', 'lsb-release', 'sudo', 'wget', 'libsbuild-perl', 'sbuild', 'sbuild-debian-developer-setup', 'buildd', 'sbuild-qemu'], deps_new=['build-essential', 'devscripts', 'diffoscope', 'fakeroot', 'gnupg', 'mmdebstrap (>= 1.5.4-2)', 'python3-apt', 'sbuild', 'sqop', 'uidmap'] 310s autopkgtest: DBG: testbed reset 310s autopkgtest: DBG: sending command to testbed: revert 459s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.dghVVw 459s autopkgtest: DBG: sending command to testbed: print-execute-command 459s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ckrahb00/runcmd 459s autopkgtest: DBG: sending command to testbed: capabilities 459s autopkgtest: DBG: got reply from testbed: ok revert-full-system isolation-machine revert suggested-normal-user=ubuntu reboot root-on-testbed ok 459s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'isolation-machine', 'revert', 'suggested-normal-user=ubuntu', 'reboot', 'root-on-testbed', 'ok', 'has_internet'] 459s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dghVVw'], kind short, sout raw, serr pipe, env [] 460s autopkgtest: DBG: testbed command exited with code 0 460s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.dghVVw/wrapper.sh 460s autopkgtest: DBG: got reply from testbed: ok 460s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dghVVw/wrapper.sh'], kind short, sout raw, serr pipe, env [] 460s autopkgtest: DBG: testbed command exited with code 0 460s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 460s autopkgtest: DBG: testbed command exited with code 0 460s autopkgtest [00:20:06]: testbed dpkg architecture: s390x 460s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 460s autopkgtest: DBG: testbed command exited with code 0 460s autopkgtest [00:20:06]: testbed apt version: 2.9.30 460s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 461s autopkgtest: DBG: testbed command exited with code 0 461s autopkgtest: DBG: testbed has eatmydata 461s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 461s autopkgtest: DBG: testbed command exited with code 0 461s autopkgtest [00:20:07]: @@@@@@@@@@@@@@@@@@@@ test bed setup 461s 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 [] 461s autopkgtest: DBG: testbed command exited with code 0 461s autopkgtest [00:20:07]: testbed release detected to be: plucky 461s 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 [] 461s autopkgtest: DBG: testbed command exited with code 0 461s 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 [] 461s autopkgtest: DBG: testbed command exited with code 0 461s autopkgtest: DBG: adding APT source: Types: deb deb-src 461s URIs: http://ftpmaster.internal/ubuntu/ 461s Suites: plucky-proposed 461s Components: main restricted universe multiverse 461s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 461s 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 [] 461s autopkgtest: DBG: testbed command exited with code 0 461s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 461s Package: * 461s Pin: release plucky-proposed 461s Pin-Priority: 500 461s 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 [] 462s autopkgtest: DBG: testbed command exited with code 0 462s autopkgtest [00:20:08]: updating testbed package index (apt update) 462s 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'] 462s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 462s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 462s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 462s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 462s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 462s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [81.0 kB] 462s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [16.3 kB] 462s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [739 kB] 462s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [106 kB] 463s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 463s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [665 kB] 463s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5472 B] 463s Fetched 1727 kB in 1s (1942 kB/s) 463s Reading package lists... 463s autopkgtest: DBG: testbed command exited with code 0 463s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 463s Package: * 463s Pin: release plucky-proposed 463s Pin-Priority: 100 463s 463s Package: src:sudo:any 463s Pin: release plucky-proposed 463s Pin-Priority: 995 463s 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:sudo:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 464s autopkgtest: DBG: testbed command exited with code 0 464s 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.dghVVw/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 464s autopkgtest: DBG: testbed command exited with code 0 464s 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'] 464s + lsb_release --codename --short 464s + RELEASE=plucky 464s + cat 464s + [ plucky != trusty ] 464s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 464s Reading package lists... 464s Building dependency tree... 464s Reading state information... 464s Calculating upgrade... 464s The following packages were automatically installed and are no longer required: 464s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 464s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 464s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 464s linux-tools-6.11.0-8-generic 464s Use 'sudo apt autoremove' to remove them. 464s The following packages will be upgraded: 464s apparmor iproute2 libapparmor1 libgpgme11t64 liblsof0 libp11-kit0 464s liburcu8t64 lsof lto-disabled-list python-apt-common python3-apt 464s sysvinit-utils 465s 12 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 465s Need to get 3078 kB of archives. 465s After this operation, 213 kB of additional disk space will be used. 465s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 465s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 465s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libapparmor1 s390x 4.1.0~beta5-0ubuntu2 [54.1 kB] 465s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 465s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python-apt-common all 2.9.9 [21.2 kB] 465s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3-apt s390x 2.9.9 [185 kB] 465s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x apparmor s390x 4.1.0~beta5-0ubuntu2 [758 kB] 465s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x liburcu8t64 s390x 0.15.1-1 [66.0 kB] 465s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 465s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 465s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 465s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x lto-disabled-list all 55 [12.3 kB] 465s Preconfiguring packages ... 465s Fetched 3078 kB in 1s (4732 kB/s) 466s (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.) 466s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 466s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 466s Setting up sysvinit-utils (3.14-1ubuntu1) ... 466s (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.) 466s Preparing to unpack .../00-iproute2_6.13.0-1ubuntu1_s390x.deb ... 466s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 466s Preparing to unpack .../01-libapparmor1_4.1.0~beta5-0ubuntu2_s390x.deb ... 466s Unpacking libapparmor1:s390x (4.1.0~beta5-0ubuntu2) over (4.1.0~beta1-0ubuntu5) ... 466s Preparing to unpack .../02-libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 466s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 466s Preparing to unpack .../03-python-apt-common_2.9.9_all.deb ... 466s Unpacking python-apt-common (2.9.9) over (2.9.8) ... 466s Preparing to unpack .../04-python3-apt_2.9.9_s390x.deb ... 466s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 466s for fn in glob1(directory, "%s.*" % fname): 466s Unpacking python3-apt (2.9.9) over (2.9.8) ... 466s Preparing to unpack .../05-apparmor_4.1.0~beta5-0ubuntu2_s390x.deb ... 466s Unpacking apparmor (4.1.0~beta5-0ubuntu2) over (4.1.0~beta1-0ubuntu5) ... 466s dpkg: warning: unable to delete old directory '/lib/apparmor': Directory not empty 466s Preparing to unpack .../06-liburcu8t64_0.15.1-1_s390x.deb ... 466s Unpacking liburcu8t64:s390x (0.15.1-1) over (0.15.0-1) ... 466s Preparing to unpack .../07-lsof_4.99.4+dfsg-1_s390x.deb ... 466s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 467s Preparing to unpack .../08-liblsof0_4.99.4+dfsg-1_s390x.deb ... 467s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 467s Preparing to unpack .../09-libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 467s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 467s Preparing to unpack .../10-lto-disabled-list_55_all.deb ... 467s Unpacking lto-disabled-list (55) over (54) ... 467s Setting up liburcu8t64:s390x (0.15.1-1) ... 467s Setting up lto-disabled-list (55) ... 467s Setting up libapparmor1:s390x (4.1.0~beta5-0ubuntu2) ... 467s Setting up liblsof0 (4.99.4+dfsg-1) ... 467s Setting up iproute2 (6.13.0-1ubuntu1) ... 467s Setting up apparmor (4.1.0~beta5-0ubuntu2) ... 467s Installing new version of config file /etc/apparmor.d/abstractions/dconf ... 467s Installing new version of config file /etc/apparmor.d/abstractions/mesa ... 467s Installing new version of config file /etc/apparmor.d/abstractions/nameservice ... 467s Installing new version of config file /etc/apparmor.d/abstractions/php ... 467s Installing new version of config file /etc/apparmor.d/abstractions/python ... 467s Installing new version of config file /etc/apparmor.d/slirp4netns ... 467s Installing new version of config file /etc/apparmor.d/toybox ... 467s Installing new version of config file /etc/apparmor.d/transmission ... 467s Installing new version of config file /etc/apparmor.d/tunables/global ... 467s Reloading AppArmor profiles 469s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 469s Setting up lsof (4.99.4+dfsg-1) ... 469s Setting up python-apt-common (2.9.9) ... 469s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 469s Setting up python3-apt (2.9.9) ... 469s Processing triggers for systemd (257.2-3ubuntu1) ... 469s Processing triggers for man-db (2.13.0-1) ... 470s Processing triggers for libc-bin (2.40-4ubuntu1) ... 471s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 471s + /usr/lib/apt/apt-helper analyze-pattern ?true 471s + uname -r 471s + sed s/\./\\./g 471s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 471s + apt list ?obsolete 471s + cut -d/ -f1 471s + tail -n+2 471s + grep -v ^linux-.*6\.12\.0-15-generic.* 471s + true 471s + obsolete_pkgs= 471s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 471s Reading package lists... 471s Building dependency tree... 471s Reading state information... 471s The following packages will be REMOVED: 471s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 471s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 471s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 471s linux-tools-6.11.0-8-generic* 471s 0 upgraded, 0 newly installed, 9 to remove and 1 not upgraded. 471s After this operation, 167 MB disk space will be freed. 471s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81079 files and directories currently installed.) 471s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 471s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 471s Removing libpython3.12t64:s390x (3.12.9-1) ... 471s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 471s Removing libnsl2:s390x (1.3.0-3build3) ... 471s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 471s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 471s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 472s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 472s Processing triggers for libc-bin (2.40-4ubuntu1) ... 473s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55979 files and directories currently installed.) 473s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 473s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 473s + grep -q trusty /etc/lsb-release 473s + [ ! -d /usr/share/doc/unattended-upgrades ] 473s + [ ! -d /usr/share/doc/lxd ] 473s + [ ! -d /usr/share/doc/lxd-client ] 473s + [ ! -d /usr/share/doc/snapd ] 473s + type iptables 473s + cat 473s + chmod 755 /etc/rc.local 473s + . /etc/rc.local 473s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 473s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 473s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 473s + uname -m 473s + [ s390x = ppc64le ] 473s + [ -d /run/systemd/system ] 473s + systemd-detect-virt --quiet --vm 473s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 473s + cat 473s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 473s + echo COMPRESS=lz4 473s autopkgtest: DBG: testbed command exited with code 0 473s autopkgtest [00:20:19]: upgrading testbed (apt dist-upgrade and autopurge) 473s 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'] 473s Reading package lists... 473s Building dependency tree... 473s Reading state information... 473s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 473s Starting 2 pkgProblemResolver with broken count: 0 473s Done 474s Entering ResolveByKeep 474s 474s The following packages will be upgraded: 474s sudo 474s 1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 474s Need to get 980 kB of archives. 474s After this operation, 16.4 kB of additional disk space will be used. 474s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sudo s390x 1.9.16p2-1ubuntu1 [980 kB] 475s Fetched 980 kB in 1s (1799 kB/s) 475s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55977 files and directories currently installed.) 475s Preparing to unpack .../sudo_1.9.16p2-1ubuntu1_s390x.deb ... 475s Unpacking sudo (1.9.16p2-1ubuntu1) over (1.9.15p5-3ubuntu5) ... 475s Setting up sudo (1.9.16p2-1ubuntu1) ... 475s Installing new version of config file /etc/sudo.conf ... 475s Processing triggers for man-db (2.13.0-1) ... 475s Processing triggers for libc-bin (2.40-4ubuntu1) ... 475s autopkgtest: DBG: testbed command exited with code 0 475s 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'] 475s Reading package lists... 476s Building dependency tree... 476s Reading state information... 476s Starting pkgProblemResolver with broken count: 0 476s Starting 2 pkgProblemResolver with broken count: 0 476s Done 476s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 476s autopkgtest: DBG: testbed command exited with code 0 476s 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.dghVVw/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 476s autopkgtest: DBG: testbed command exited with code 1 476s autopkgtest [00:20:22]: rebooting testbed after setup commands that affected boot 476s autopkgtest: DBG: sending command to testbed: reboot 496s autopkgtest: DBG: got reply from testbed: ok 496s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 496s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dghVVw'], kind short, sout raw, serr pipe, env [] 496s autopkgtest: DBG: testbed command exited with code 0 496s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.dghVVw/autopkgtest-reboot 496s autopkgtest: DBG: got reply from testbed: ok 496s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 496s autopkgtest: DBG: testbed command exited with code 0 496s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 497s autopkgtest: DBG: testbed command exited with code 0 497s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 497s autopkgtest: DBG: testbed command exited with code 0 497s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dghVVw'], kind short, sout raw, serr pipe, env [] 497s autopkgtest: DBG: testbed command exited with code 0 497s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.dghVVw/autopkgtest-reboot-prepare 497s autopkgtest: DBG: got reply from testbed: ok 497s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 497s autopkgtest: DBG: testbed command exited with code 0 497s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 497s autopkgtest: DBG: testbed command exited with code 0 497s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 498s autopkgtest: DBG: testbed command exited with code 0 498s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.dghVVw/testbed-packages"], kind short, sout raw, serr pipe, env [] 498s autopkgtest: DBG: testbed command exited with code 0 498s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dghVVw/testbed-packages /tmp/autopkgtest-work.5m_u5fw5/out/testbed-packages 498s autopkgtest: DBG: got reply from testbed: ok 498s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 498s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dghVVw'], kind short, sout raw, serr pipe, env [] 498s autopkgtest: DBG: testbed command exited with code 0 498s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.dghVVw/autopkgtest-reboot 498s autopkgtest: DBG: got reply from testbed: ok 498s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 499s autopkgtest: DBG: testbed command exited with code 0 499s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 499s autopkgtest: DBG: testbed command exited with code 0 499s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 499s autopkgtest: DBG: testbed command exited with code 0 499s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dghVVw'], kind short, sout raw, serr pipe, env [] 499s autopkgtest: DBG: testbed command exited with code 0 499s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.dghVVw/autopkgtest-reboot-prepare 499s autopkgtest: DBG: got reply from testbed: ok 499s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 499s autopkgtest: DBG: testbed command exited with code 0 499s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dghVVw/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 500s autopkgtest: DBG: testbed command exited with code 0 500s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 500s autopkgtest: DBG: testbed command exited with code 0 500s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 500s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'devscripts', 'diffoscope', 'fakeroot', 'gnupg', 'mmdebstrap (>= 1.5.4-2)', 'python3-apt', 'sbuild', 'sqop', 'uidmap'] 500s autopkgtest: DBG: install-deps: satisfying build-essential, devscripts, diffoscope, fakeroot, gnupg, mmdebstrap (>= 1.5.4-2), python3-apt, sbuild, sqop, uidmap 500s autopkgtest: DBG: can use apt-get on testbed: True 500s 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, devscripts, diffoscope, fakeroot, gnupg, mmdebstrap (>= 1.5.4-2), python3-apt, sbuild, sqop, uidmap'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 500s Reading package lists... 500s Building dependency tree... 500s Reading state information... 500s Starting pkgProblemResolver with broken count: 0 500s Starting 2 pkgProblemResolver with broken count: 0 500s Done 501s The following NEW packages will be installed: 501s build-essential cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu 501s devscripts diffoscope diffoscope-minimal fakeroot g++ g++-14 501s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 501s gcc-s390x-linux-gnu libasan8 libb-hooks-op-check-perl libcc1-0 501s libclass-data-inheritable-perl libclass-method-modifiers-perl 501s libclass-xsaccessor-perl libclone-perl libdevel-callchecker-perl 501s libdevel-stacktrace-perl libdistro-info-perl libdynaloader-functions-perl 501s libemail-date-format-perl libencode-locale-perl libexception-class-perl 501s libfakeroot libfile-dirlist-perl libfile-homedir-perl libfile-listing-perl 501s libfile-touch-perl libfile-which-perl libfilesys-df-perl libgcc-14-dev 501s libgomp1 libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl 501s libhttp-cookies-perl libhttp-date-perl libhttp-message-perl 501s libhttp-negotiate-perl libimport-into-perl libio-html-perl libio-pty-perl 501s libio-socket-ssl-perl libipc-run-perl libisl23 libitm1 501s liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl 501s libmime-lite-perl libmodule-runtime-perl libmoo-perl libmpc3 501s libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl 501s libparams-classify-perl librole-tiny-perl libsbuild-perl libstdc++-14-dev 501s libsub-quote-perl libsubid5 libtimedate-perl libtry-tiny-perl libubsan1 501s liburi-perl libwww-perl libwww-robotrules-perl mmdebstrap patchutils 501s perl-openssl-defaults python3-libarchive-c python3-magic sbuild sqop uidmap 501s wdiff 501s 0 upgraded, 85 newly installed, 0 to remove and 0 not upgraded. 501s Need to get 54.5 MB of archives. 501s After this operation, 174 MB of additional disk space will be used. 501s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 502s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 502s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 502s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 502s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 502s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 502s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 502s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 502s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 502s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 502s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 502s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 502s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 503s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 503s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 503s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 503s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 503s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 503s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 503s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 503s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 503s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 503s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x sqop s390x 0.36.1-1 [1980 kB] 503s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-dirlist-perl all 0.05-3 [7286 B] 503s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-which-perl all 1.27-2 [12.5 kB] 503s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-homedir-perl all 1.006-2 [37.0 kB] 503s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-touch-perl all 0.12-2 [7498 B] 503s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libio-pty-perl s390x 1:1.20-1build3 [31.6 kB] 503s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libipc-run-perl all 20231003.0-2 [91.5 kB] 503s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libclass-method-modifiers-perl all 2.15-1 [16.1 kB] 503s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libclass-xsaccessor-perl s390x 1.19-4build5 [34.2 kB] 503s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libb-hooks-op-check-perl s390x 0.22-3build2 [9566 B] 503s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libdynaloader-functions-perl all 0.004-1 [11.4 kB] 503s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libdevel-callchecker-perl s390x 0.009-1build1 [14.2 kB] 503s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libparams-classify-perl s390x 0.015-2build6 [20.6 kB] 503s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libmodule-runtime-perl all 0.016-2 [16.4 kB] 503s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libimport-into-perl all 1.002005-2 [10.7 kB] 503s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x librole-tiny-perl all 2.002004-1 [16.3 kB] 503s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libsub-quote-perl all 2.006008-1ubuntu1 [20.7 kB] 503s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libmoo-perl all 2.005005-1 [47.4 kB] 503s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libencode-locale-perl all 1.05-3 [11.6 kB] 503s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libtimedate-perl all 2.3300-2 [34.0 kB] 503s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-date-perl all 6.06-1 [10.2 kB] 503s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-listing-perl all 6.16-1 [11.3 kB] 503s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-tagset-perl all 3.24-1 [14.1 kB] 503s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x liburi-perl all 5.30-1 [94.4 kB] 503s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-parser-perl s390x 3.83-1build1 [87.8 kB] 503s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libhtml-tree-perl all 5.07-3 [200 kB] 503s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libclone-perl s390x 0.47-1 [10.7 kB] 503s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libio-html-perl all 1.004-3 [15.9 kB] 503s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x liblwp-mediatypes-perl all 6.04-2 [20.1 kB] 503s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-message-perl all 7.00-2ubuntu1 [75.9 kB] 503s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-cookies-perl all 6.11-1 [18.2 kB] 503s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libhttp-negotiate-perl all 6.01-2 [12.4 kB] 503s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x perl-openssl-defaults s390x 7build3 [6628 B] 503s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libnet-ssleay-perl s390x 1.94-2 [319 kB] 503s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libio-socket-ssl-perl all 2.089-1 [200 kB] 503s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libnet-http-perl all 6.23-1 [22.3 kB] 503s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x liblwp-protocol-https-perl all 6.14-1 [9040 B] 503s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libtry-tiny-perl all 0.32-1 [21.2 kB] 503s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libwww-robotrules-perl all 6.02-1 [12.6 kB] 503s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libwww-perl all 6.77-1 [138 kB] 503s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x patchutils s390x 0.4.2-1build3 [79.2 kB] 503s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x wdiff s390x 1.2.2-7 [29.8 kB] 503s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x devscripts all 2.25.2 [1058 kB] 503s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-libarchive-c all 5.1-1ubuntu1 [16.6 kB] 503s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x python3-magic all 2:0.4.27-3 [13.4 kB] 503s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x diffoscope-minimal all 288 [156 kB] 503s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x diffoscope all 288 [5004 B] 503s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libfakeroot s390x 1.37-1 [32.5 kB] 503s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x fakeroot s390x 1.37-1 [67.8 kB] 503s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libclass-data-inheritable-perl all 0.10-1 [8038 B] 503s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libdevel-stacktrace-perl all 2.0500-1 [22.1 kB] 504s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libdistro-info-perl all 1.13 [5846 B] 504s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libemail-date-format-perl all 1.008-1 [6772 B] 504s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libexception-class-perl all 1.45-1 [28.6 kB] 504s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libfilesys-df-perl s390x 0.92-7build5 [11.1 kB] 504s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libnet-smtp-ssl-perl all 1.04-2 [6218 B] 504s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libmailtools-perl all 2.22-1 [77.1 kB] 504s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libmime-lite-perl all 3.033-2 [61.7 kB] 504s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libsubid5 s390x 1:4.16.0-7ubuntu1 [26.8 kB] 504s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x mmdebstrap all 1.5.6-2 [130 kB] 504s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x uidmap s390x 1:4.16.0-7ubuntu1 [38.2 kB] 504s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libsbuild-perl all 0.88.3ubuntu1 [98.4 kB] 504s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x sbuild all 0.88.3ubuntu1 [99.1 kB] 504s Fetched 54.5 MB in 3s (19.9 MB/s) 504s Selecting previously unselected package libisl23:s390x. 504s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55977 files and directories currently installed.) 505s Preparing to unpack .../00-libisl23_0.27-1_s390x.deb ... 505s Unpacking libisl23:s390x (0.27-1) ... 505s Selecting previously unselected package libmpc3:s390x. 505s Preparing to unpack .../01-libmpc3_1.3.1-1build2_s390x.deb ... 505s Unpacking libmpc3:s390x (1.3.1-1build2) ... 505s Selecting previously unselected package cpp-14-s390x-linux-gnu. 505s Preparing to unpack .../02-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 505s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 505s Selecting previously unselected package cpp-14. 505s Preparing to unpack .../03-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 505s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 505s Selecting previously unselected package cpp-s390x-linux-gnu. 505s Preparing to unpack .../04-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 505s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 505s Selecting previously unselected package cpp. 505s Preparing to unpack .../05-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 505s Unpacking cpp (4:14.2.0-1ubuntu1) ... 505s Selecting previously unselected package libcc1-0:s390x. 505s Preparing to unpack .../06-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 505s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 505s Selecting previously unselected package libgomp1:s390x. 505s Preparing to unpack .../07-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 505s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 505s Selecting previously unselected package libitm1:s390x. 505s Preparing to unpack .../08-libitm1_15-20250213-1ubuntu1_s390x.deb ... 505s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 505s Selecting previously unselected package libasan8:s390x. 505s Preparing to unpack .../09-libasan8_15-20250213-1ubuntu1_s390x.deb ... 505s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 505s Selecting previously unselected package libubsan1:s390x. 505s Preparing to unpack .../10-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 505s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 505s Selecting previously unselected package libgcc-14-dev:s390x. 505s Preparing to unpack .../11-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 505s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 505s Selecting previously unselected package gcc-14-s390x-linux-gnu. 505s Preparing to unpack .../12-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 505s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 505s Selecting previously unselected package gcc-14. 505s Preparing to unpack .../13-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 505s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 505s Selecting previously unselected package gcc-s390x-linux-gnu. 505s Preparing to unpack .../14-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 505s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 505s Selecting previously unselected package gcc. 505s Preparing to unpack .../15-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 505s Unpacking gcc (4:14.2.0-1ubuntu1) ... 505s Selecting previously unselected package libstdc++-14-dev:s390x. 505s Preparing to unpack .../16-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 505s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 505s Selecting previously unselected package g++-14-s390x-linux-gnu. 505s Preparing to unpack .../17-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 505s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 505s Selecting previously unselected package g++-14. 505s Preparing to unpack .../18-g++-14_14.2.0-17ubuntu1_s390x.deb ... 505s Unpacking g++-14 (14.2.0-17ubuntu1) ... 505s Selecting previously unselected package g++-s390x-linux-gnu. 505s Preparing to unpack .../19-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 505s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 505s Selecting previously unselected package g++. 505s Preparing to unpack .../20-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 505s Unpacking g++ (4:14.2.0-1ubuntu1) ... 505s Selecting previously unselected package build-essential. 505s Preparing to unpack .../21-build-essential_12.10ubuntu1_s390x.deb ... 505s Unpacking build-essential (12.10ubuntu1) ... 505s Selecting previously unselected package sqop. 505s Preparing to unpack .../22-sqop_0.36.1-1_s390x.deb ... 505s Unpacking sqop (0.36.1-1) ... 505s Selecting previously unselected package libfile-dirlist-perl. 505s Preparing to unpack .../23-libfile-dirlist-perl_0.05-3_all.deb ... 505s Unpacking libfile-dirlist-perl (0.05-3) ... 505s Selecting previously unselected package libfile-which-perl. 505s Preparing to unpack .../24-libfile-which-perl_1.27-2_all.deb ... 505s Unpacking libfile-which-perl (1.27-2) ... 505s Selecting previously unselected package libfile-homedir-perl. 505s Preparing to unpack .../25-libfile-homedir-perl_1.006-2_all.deb ... 505s Unpacking libfile-homedir-perl (1.006-2) ... 505s Selecting previously unselected package libfile-touch-perl. 505s Preparing to unpack .../26-libfile-touch-perl_0.12-2_all.deb ... 505s Unpacking libfile-touch-perl (0.12-2) ... 505s Selecting previously unselected package libio-pty-perl. 505s Preparing to unpack .../27-libio-pty-perl_1%3a1.20-1build3_s390x.deb ... 505s Unpacking libio-pty-perl (1:1.20-1build3) ... 505s Selecting previously unselected package libipc-run-perl. 505s Preparing to unpack .../28-libipc-run-perl_20231003.0-2_all.deb ... 505s Unpacking libipc-run-perl (20231003.0-2) ... 505s Selecting previously unselected package libclass-method-modifiers-perl. 505s Preparing to unpack .../29-libclass-method-modifiers-perl_2.15-1_all.deb ... 505s Unpacking libclass-method-modifiers-perl (2.15-1) ... 505s Selecting previously unselected package libclass-xsaccessor-perl. 505s Preparing to unpack .../30-libclass-xsaccessor-perl_1.19-4build5_s390x.deb ... 505s Unpacking libclass-xsaccessor-perl (1.19-4build5) ... 505s Selecting previously unselected package libb-hooks-op-check-perl:s390x. 505s Preparing to unpack .../31-libb-hooks-op-check-perl_0.22-3build2_s390x.deb ... 505s Unpacking libb-hooks-op-check-perl:s390x (0.22-3build2) ... 505s Selecting previously unselected package libdynaloader-functions-perl. 505s Preparing to unpack .../32-libdynaloader-functions-perl_0.004-1_all.deb ... 505s Unpacking libdynaloader-functions-perl (0.004-1) ... 505s Selecting previously unselected package libdevel-callchecker-perl:s390x. 505s Preparing to unpack .../33-libdevel-callchecker-perl_0.009-1build1_s390x.deb ... 505s Unpacking libdevel-callchecker-perl:s390x (0.009-1build1) ... 505s Selecting previously unselected package libparams-classify-perl:s390x. 505s Preparing to unpack .../34-libparams-classify-perl_0.015-2build6_s390x.deb ... 505s Unpacking libparams-classify-perl:s390x (0.015-2build6) ... 505s Selecting previously unselected package libmodule-runtime-perl. 505s Preparing to unpack .../35-libmodule-runtime-perl_0.016-2_all.deb ... 505s Unpacking libmodule-runtime-perl (0.016-2) ... 505s Selecting previously unselected package libimport-into-perl. 505s Preparing to unpack .../36-libimport-into-perl_1.002005-2_all.deb ... 505s Unpacking libimport-into-perl (1.002005-2) ... 505s Selecting previously unselected package librole-tiny-perl. 505s Preparing to unpack .../37-librole-tiny-perl_2.002004-1_all.deb ... 505s Unpacking librole-tiny-perl (2.002004-1) ... 505s Selecting previously unselected package libsub-quote-perl. 505s Preparing to unpack .../38-libsub-quote-perl_2.006008-1ubuntu1_all.deb ... 505s Unpacking libsub-quote-perl (2.006008-1ubuntu1) ... 505s Selecting previously unselected package libmoo-perl. 505s Preparing to unpack .../39-libmoo-perl_2.005005-1_all.deb ... 505s Unpacking libmoo-perl (2.005005-1) ... 505s Selecting previously unselected package libencode-locale-perl. 505s Preparing to unpack .../40-libencode-locale-perl_1.05-3_all.deb ... 505s Unpacking libencode-locale-perl (1.05-3) ... 505s Selecting previously unselected package libtimedate-perl. 505s Preparing to unpack .../41-libtimedate-perl_2.3300-2_all.deb ... 505s Unpacking libtimedate-perl (2.3300-2) ... 505s Selecting previously unselected package libhttp-date-perl. 505s Preparing to unpack .../42-libhttp-date-perl_6.06-1_all.deb ... 505s Unpacking libhttp-date-perl (6.06-1) ... 505s Selecting previously unselected package libfile-listing-perl. 505s Preparing to unpack .../43-libfile-listing-perl_6.16-1_all.deb ... 505s Unpacking libfile-listing-perl (6.16-1) ... 505s Selecting previously unselected package libhtml-tagset-perl. 506s Preparing to unpack .../44-libhtml-tagset-perl_3.24-1_all.deb ... 506s Unpacking libhtml-tagset-perl (3.24-1) ... 506s Selecting previously unselected package liburi-perl. 506s Preparing to unpack .../45-liburi-perl_5.30-1_all.deb ... 506s Unpacking liburi-perl (5.30-1) ... 506s Selecting previously unselected package libhtml-parser-perl:s390x. 506s Preparing to unpack .../46-libhtml-parser-perl_3.83-1build1_s390x.deb ... 506s Unpacking libhtml-parser-perl:s390x (3.83-1build1) ... 506s Selecting previously unselected package libhtml-tree-perl. 506s Preparing to unpack .../47-libhtml-tree-perl_5.07-3_all.deb ... 506s Unpacking libhtml-tree-perl (5.07-3) ... 506s Selecting previously unselected package libclone-perl:s390x. 506s Preparing to unpack .../48-libclone-perl_0.47-1_s390x.deb ... 506s Unpacking libclone-perl:s390x (0.47-1) ... 506s Selecting previously unselected package libio-html-perl. 506s Preparing to unpack .../49-libio-html-perl_1.004-3_all.deb ... 506s Unpacking libio-html-perl (1.004-3) ... 506s Selecting previously unselected package liblwp-mediatypes-perl. 506s Preparing to unpack .../50-liblwp-mediatypes-perl_6.04-2_all.deb ... 506s Unpacking liblwp-mediatypes-perl (6.04-2) ... 506s Selecting previously unselected package libhttp-message-perl. 506s Preparing to unpack .../51-libhttp-message-perl_7.00-2ubuntu1_all.deb ... 506s Unpacking libhttp-message-perl (7.00-2ubuntu1) ... 506s Selecting previously unselected package libhttp-cookies-perl. 506s Preparing to unpack .../52-libhttp-cookies-perl_6.11-1_all.deb ... 506s Unpacking libhttp-cookies-perl (6.11-1) ... 506s Selecting previously unselected package libhttp-negotiate-perl. 506s Preparing to unpack .../53-libhttp-negotiate-perl_6.01-2_all.deb ... 506s Unpacking libhttp-negotiate-perl (6.01-2) ... 506s Selecting previously unselected package perl-openssl-defaults:s390x. 506s Preparing to unpack .../54-perl-openssl-defaults_7build3_s390x.deb ... 506s Unpacking perl-openssl-defaults:s390x (7build3) ... 506s Selecting previously unselected package libnet-ssleay-perl:s390x. 506s Preparing to unpack .../55-libnet-ssleay-perl_1.94-2_s390x.deb ... 506s Unpacking libnet-ssleay-perl:s390x (1.94-2) ... 506s Selecting previously unselected package libio-socket-ssl-perl. 506s Preparing to unpack .../56-libio-socket-ssl-perl_2.089-1_all.deb ... 506s Unpacking libio-socket-ssl-perl (2.089-1) ... 506s Selecting previously unselected package libnet-http-perl. 506s Preparing to unpack .../57-libnet-http-perl_6.23-1_all.deb ... 506s Unpacking libnet-http-perl (6.23-1) ... 506s Selecting previously unselected package liblwp-protocol-https-perl. 506s Preparing to unpack .../58-liblwp-protocol-https-perl_6.14-1_all.deb ... 506s Unpacking liblwp-protocol-https-perl (6.14-1) ... 506s Selecting previously unselected package libtry-tiny-perl. 506s Preparing to unpack .../59-libtry-tiny-perl_0.32-1_all.deb ... 506s Unpacking libtry-tiny-perl (0.32-1) ... 506s Selecting previously unselected package libwww-robotrules-perl. 506s Preparing to unpack .../60-libwww-robotrules-perl_6.02-1_all.deb ... 506s Unpacking libwww-robotrules-perl (6.02-1) ... 506s Selecting previously unselected package libwww-perl. 506s Preparing to unpack .../61-libwww-perl_6.77-1_all.deb ... 506s Unpacking libwww-perl (6.77-1) ... 506s Selecting previously unselected package patchutils. 506s Preparing to unpack .../62-patchutils_0.4.2-1build3_s390x.deb ... 506s Unpacking patchutils (0.4.2-1build3) ... 506s Selecting previously unselected package wdiff. 506s Preparing to unpack .../63-wdiff_1.2.2-7_s390x.deb ... 506s Unpacking wdiff (1.2.2-7) ... 506s Selecting previously unselected package devscripts. 506s Preparing to unpack .../64-devscripts_2.25.2_all.deb ... 506s Unpacking devscripts (2.25.2) ... 506s Selecting previously unselected package python3-libarchive-c. 506s Preparing to unpack .../65-python3-libarchive-c_5.1-1ubuntu1_all.deb ... 506s Unpacking python3-libarchive-c (5.1-1ubuntu1) ... 506s Selecting previously unselected package python3-magic. 506s Preparing to unpack .../66-python3-magic_2%3a0.4.27-3_all.deb ... 506s Unpacking python3-magic (2:0.4.27-3) ... 506s Selecting previously unselected package diffoscope-minimal. 506s Preparing to unpack .../67-diffoscope-minimal_288_all.deb ... 506s Unpacking diffoscope-minimal (288) ... 506s Selecting previously unselected package diffoscope. 506s Preparing to unpack .../68-diffoscope_288_all.deb ... 506s Unpacking diffoscope (288) ... 506s Selecting previously unselected package libfakeroot:s390x. 506s Preparing to unpack .../69-libfakeroot_1.37-1_s390x.deb ... 506s Unpacking libfakeroot:s390x (1.37-1) ... 506s Selecting previously unselected package fakeroot. 506s Preparing to unpack .../70-fakeroot_1.37-1_s390x.deb ... 506s Unpacking fakeroot (1.37-1) ... 506s Selecting previously unselected package libclass-data-inheritable-perl. 506s Preparing to unpack .../71-libclass-data-inheritable-perl_0.10-1_all.deb ... 506s Unpacking libclass-data-inheritable-perl (0.10-1) ... 506s Selecting previously unselected package libdevel-stacktrace-perl. 506s Preparing to unpack .../72-libdevel-stacktrace-perl_2.0500-1_all.deb ... 506s Unpacking libdevel-stacktrace-perl (2.0500-1) ... 506s Selecting previously unselected package libdistro-info-perl. 506s Preparing to unpack .../73-libdistro-info-perl_1.13_all.deb ... 506s Unpacking libdistro-info-perl (1.13) ... 506s Selecting previously unselected package libemail-date-format-perl. 506s Preparing to unpack .../74-libemail-date-format-perl_1.008-1_all.deb ... 506s Unpacking libemail-date-format-perl (1.008-1) ... 506s Selecting previously unselected package libexception-class-perl. 506s Preparing to unpack .../75-libexception-class-perl_1.45-1_all.deb ... 506s Unpacking libexception-class-perl (1.45-1) ... 506s Selecting previously unselected package libfilesys-df-perl. 506s Preparing to unpack .../76-libfilesys-df-perl_0.92-7build5_s390x.deb ... 506s Unpacking libfilesys-df-perl (0.92-7build5) ... 506s Selecting previously unselected package libnet-smtp-ssl-perl. 506s Preparing to unpack .../77-libnet-smtp-ssl-perl_1.04-2_all.deb ... 506s Unpacking libnet-smtp-ssl-perl (1.04-2) ... 506s Selecting previously unselected package libmailtools-perl. 506s Preparing to unpack .../78-libmailtools-perl_2.22-1_all.deb ... 506s Unpacking libmailtools-perl (2.22-1) ... 506s Selecting previously unselected package libmime-lite-perl. 506s Preparing to unpack .../79-libmime-lite-perl_3.033-2_all.deb ... 506s Unpacking libmime-lite-perl (3.033-2) ... 506s Selecting previously unselected package libsubid5:s390x. 506s Preparing to unpack .../80-libsubid5_1%3a4.16.0-7ubuntu1_s390x.deb ... 506s Unpacking libsubid5:s390x (1:4.16.0-7ubuntu1) ... 506s Selecting previously unselected package mmdebstrap. 506s Preparing to unpack .../81-mmdebstrap_1.5.6-2_all.deb ... 506s Unpacking mmdebstrap (1.5.6-2) ... 506s Selecting previously unselected package uidmap. 506s Preparing to unpack .../82-uidmap_1%3a4.16.0-7ubuntu1_s390x.deb ... 506s Unpacking uidmap (1:4.16.0-7ubuntu1) ... 506s Selecting previously unselected package libsbuild-perl. 506s Preparing to unpack .../83-libsbuild-perl_0.88.3ubuntu1_all.deb ... 506s Unpacking libsbuild-perl (0.88.3ubuntu1) ... 506s Selecting previously unselected package sbuild. 506s Preparing to unpack .../84-sbuild_0.88.3ubuntu1_all.deb ... 506s Unpacking sbuild (0.88.3ubuntu1) ... 506s Setting up wdiff (1.2.2-7) ... 506s Setting up libfile-which-perl (1.27-2) ... 506s Setting up python3-libarchive-c (5.1-1ubuntu1) ... 506s Setting up libdynaloader-functions-perl (0.004-1) ... 506s Setting up libclass-method-modifiers-perl (2.15-1) ... 506s Setting up libio-pty-perl (1:1.20-1build3) ... 506s Setting up libclone-perl:s390x (0.47-1) ... 506s Setting up libdistro-info-perl (1.13) ... 506s Setting up libhtml-tagset-perl (3.24-1) ... 506s Setting up libfilesys-df-perl (0.92-7build5) ... 506s Setting up liblwp-mediatypes-perl (6.04-2) ... 506s Setting up libtry-tiny-perl (0.32-1) ... 506s Setting up perl-openssl-defaults:s390x (7build3) ... 506s Setting up libencode-locale-perl (1.05-3) ... 506s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 506s Setting up libsubid5:s390x (1:4.16.0-7ubuntu1) ... 506s Setting up libfakeroot:s390x (1.37-1) ... 506s Setting up fakeroot (1.37-1) ... 506s update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode 506s Setting up patchutils (0.4.2-1build3) ... 506s Setting up libclass-data-inheritable-perl (0.10-1) ... 506s Setting up mmdebstrap (1.5.6-2) ... 506s Setting up libemail-date-format-perl (1.008-1) ... 506s Setting up sqop (0.36.1-1) ... 506s update-alternatives: using /usr/bin/sqop to provide /usr/bin/sopv (sopv) in auto mode 506s Setting up libmpc3:s390x (1.3.1-1build2) ... 506s Setting up libio-html-perl (1.004-3) ... 506s Setting up libb-hooks-op-check-perl:s390x (0.22-3build2) ... 506s Setting up libipc-run-perl (20231003.0-2) ... 506s Setting up libtimedate-perl (2.3300-2) ... 506s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 506s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 506s Setting up librole-tiny-perl (2.002004-1) ... 506s Setting up libsub-quote-perl (2.006008-1ubuntu1) ... 506s Setting up libdevel-stacktrace-perl (2.0500-1) ... 506s Setting up libclass-xsaccessor-perl (1.19-4build5) ... 506s Setting up libfile-dirlist-perl (0.05-3) ... 506s Setting up libisl23:s390x (0.27-1) ... 506s Setting up libfile-homedir-perl (1.006-2) ... 506s Setting up python3-magic (2:0.4.27-3) ... 506s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 506s Setting up liburi-perl (5.30-1) ... 506s Setting up libfile-touch-perl (0.12-2) ... 506s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 506s Setting up libnet-ssleay-perl:s390x (1.94-2) ... 506s Setting up libhttp-date-perl (6.06-1) ... 506s Setting up libfile-listing-perl (6.16-1) ... 506s Setting up uidmap (1:4.16.0-7ubuntu1) ... 506s Setting up libnet-http-perl (6.23-1) ... 506s Setting up libexception-class-perl (1.45-1) ... 506s Setting up libdevel-callchecker-perl:s390x (0.009-1build1) ... 506s Setting up diffoscope-minimal (288) ... 506s Setting up diffoscope (288) ... 506s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 506s Setting up cpp-14 (14.2.0-17ubuntu1) ... 506s Setting up libwww-robotrules-perl (6.02-1) ... 506s Setting up libhtml-parser-perl:s390x (3.83-1build1) ... 506s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 506s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 506s Setting up libio-socket-ssl-perl (2.089-1) ... 506s Setting up libhttp-message-perl (7.00-2ubuntu1) ... 506s Setting up libhttp-negotiate-perl (6.01-2) ... 506s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 506s Setting up libhttp-cookies-perl (6.11-1) ... 506s Setting up libhtml-tree-perl (5.07-3) ... 506s Setting up libparams-classify-perl:s390x (0.015-2build6) ... 506s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 506s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 506s Setting up libnet-smtp-ssl-perl (1.04-2) ... 506s Setting up libmodule-runtime-perl (0.016-2) ... 506s Setting up libmailtools-perl (2.22-1) ... 506s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 506s Setting up cpp (4:14.2.0-1ubuntu1) ... 506s Setting up libmime-lite-perl (3.033-2) ... 506s Setting up libimport-into-perl (1.002005-2) ... 506s Setting up libmoo-perl (2.005005-1) ... 506s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 506s Setting up gcc-14 (14.2.0-17ubuntu1) ... 506s Setting up libsbuild-perl (0.88.3ubuntu1) ... 506s Setting up sbuild (0.88.3ubuntu1) ... 507s usermod: unlocking the user's password would result in a passwordless account. 507s You should set a password with usermod -p to unlock this user's password. 507s Setting up g++-14 (14.2.0-17ubuntu1) ... 507s Setting up gcc (4:14.2.0-1ubuntu1) ... 507s Setting up g++ (4:14.2.0-1ubuntu1) ... 507s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 507s Setting up build-essential (12.10ubuntu1) ... 507s Setting up liblwp-protocol-https-perl (6.14-1) ... 507s Setting up libwww-perl (6.77-1) ... 507s Setting up devscripts (2.25.2) ... 507s Processing triggers for install-info (7.1.1-1) ... 507s Processing triggers for libc-bin (2.40-4ubuntu1) ... 507s Processing triggers for man-db (2.13.0-1) ... 509s autopkgtest: DBG: testbed command exited with code 0 509s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'sbuild'], kind short, sout pipe, serr pipe, env [] 509s autopkgtest: DBG: testbed command exited with code 0 509s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.dghVVw/unshare-packages.all"], kind short, sout raw, serr pipe, env [] 510s autopkgtest: DBG: testbed command exited with code 0 510s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dghVVw/unshare-packages.all /tmp/autopkgtest-work.5m_u5fw5/out/unshare-packages.all 510s autopkgtest: DBG: got reply from testbed: ok 510s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.dghVVw/build.oqW/src'], kind short, sout raw, serr raw, env [] 510s autopkgtest: DBG: testbed command exited with code 1 510s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dghVVw/build.oqW'], kind short, sout raw, serr pipe, env [] 510s autopkgtest: DBG: testbed command exited with code 0 510s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.5m_u5fw5/out/tests-tree/ /tmp/autopkgtest.dghVVw/build.oqW/src/ 511s autopkgtest: DBG: got reply from testbed: ok 511s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.dghVVw/build.oqW/src'], kind short, sout raw, serr pipe, env [] 511s autopkgtest: DBG: testbed command exited with code 0 511s autopkgtest [00:20:57]: test unshare: [----------------------- 511s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.dghVVw/wrapper.sh --debug --artifacts=/tmp/autopkgtest.dghVVw/unshare-artifacts --chdir=/tmp/autopkgtest.dghVVw/build.oqW/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.dghVVw/unshare-stderr --stdout=/tmp/autopkgtest.dghVVw/unshare-stdout --tmp=/tmp/autopkgtest.dghVVw/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sudo/1.9.16p2-1ubuntu1 --make-executable=/tmp/autopkgtest.dghVVw/build.oqW/src/debian/tests/unshare -- /tmp/autopkgtest.dghVVw/build.oqW/src/debian/tests/unshare'], kind test, sout raw, serr raw, env [] 511s /tmp/autopkgtest.dghVVw/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.dghVVw/unshare-artifacts 511s /tmp/autopkgtest.dghVVw/wrapper.sh: changing to directory: /tmp/autopkgtest.dghVVw/build.oqW/src 511s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 511s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 511s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 511s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 511s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: LANG=C.UTF-8 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LANGUAGE 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_ADDRESS 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_ALL 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_COLLATE 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_CTYPE 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_IDENTIFICATION 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_MEASUREMENT 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_MESSAGES 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_MONETARY 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_NAME 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_NUMERIC 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_PAPER 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_TELEPHONE 511s /tmp/autopkgtest.dghVVw/wrapper.sh: unsetting environment: LC_TIME 511s /tmp/autopkgtest.dghVVw/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 511s /tmp/autopkgtest.dghVVw/wrapper.sh: pretending to be a login shell 511s /tmp/autopkgtest.dghVVw/wrapper.sh: will write standard error to /tmp/autopkgtest.dghVVw/unshare-stderr 511s /tmp/autopkgtest.dghVVw/wrapper.sh: will write stdout to /tmp/autopkgtest.dghVVw/unshare-stdout 511s /tmp/autopkgtest.dghVVw/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.dghVVw/autopkgtest_tmp 511s /tmp/autopkgtest.dghVVw/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sudo/1.9.16p2-1ubuntu1 511s /tmp/autopkgtest.dghVVw/wrapper.sh: marking as executable: /tmp/autopkgtest.dghVVw/build.oqW/src/debian/tests/unshare 511s /tmp/autopkgtest.dghVVw/wrapper.sh: command to run: /tmp/autopkgtest.dghVVw/build.oqW/src/debian/tests/unshare 511s /tmp/autopkgtest.dghVVw/wrapper.sh: copying /tmp/tmp.7o1iji22NG/out to stdout and file: /tmp/autopkgtest.dghVVw/unshare-stdout 511s /tmp/autopkgtest.dghVVw/wrapper.sh: copying /tmp/tmp.7o1iji22NG/err to standard error and file: /tmp/autopkgtest.dghVVw/unshare-stdout 511s /tmp/autopkgtest.dghVVw/wrapper.sh: writing script pid 2201 to /tmp/autopkgtest_script_pid 511s + [ -z x ] 511s + ./debian/tests/get_default_release.py 511s + release=plucky 511s + [ -z plucky ] 511s + dpkg --print-architecture 511s + nativearch=s390x 511s + foreignarch= 511s + [ s390x = amd64 ] 511s + mkdir -p /tmp/autopkgtest.dghVVw/autopkgtest_tmp/gpghome 511s + chmod 700 /tmp/autopkgtest.dghVVw/autopkgtest_tmp/gpghome 511s + export GNUPGHOME=/tmp/autopkgtest.dghVVw/autopkgtest_tmp/gpghome 511s + sqop generate-key sbuild fake uploader 511s + gpg --batch --allow-secret-key-import --import - 511s gpg: keybox '/tmp/autopkgtest.dghVVw/autopkgtest_tmp/gpghome/pubring.kbx' created 511s gpg: /tmp/autopkgtest.dghVVw/autopkgtest_tmp/gpghome/trustdb.gpg: trustdb created 511s gpg: key D5CAEDD8DFF3EC83: public key "sbuild fake uploader " imported 511s gpg: key D5CAEDD8DFF3EC83: secret key imported 511s gpg: Total number processed: 1 511s gpg: imported: 1 511s gpg: secret keys read: 1 511s gpg: secret keys imported: 1 511s + umask 022 511s + mkdir -p /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg-1.0/debian/source 511s + cat 511s + cat 511s + cat 511s + cat 511s + chmod +x /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg-1.0/debian/rules 511s + cat 511s + mmdebstrap --mode=unshare --variant=apt --include=ca-certificates --architecture=s390x, --debug --hook-dir=/usr/share/mmdebstrap/hooks/copy-host-apt-sources-and-preferences --hook-dir=/usr/share/mmdebstrap/hooks/file-mirror-automount --skip=cleanup/apt/lists /tmp/autopkgtest.dghVVw/autopkgtest_tmp/chroot.tar 511s sh: 1: printf: usage: printf format [arg ...] 512s D: 2238 6121 Native architecture (outside): s390x 512s D: 2238 6122 Native architecture (inside): s390x 512s D: 2238 6124 Foreign architectures (inside): 512s I: 2238 6285 chroot architecture s390x is equal to the host's architecture 512s D: 2238 5262 suite chromodoris with keyring /usr/share/keyrings/tanglu-archive-keyring.gpg 512s D: 2238 5262 suite dasyatis with keyring /usr/share/keyrings/tanglu-archive-keyring.gpg 512s D: 2238 5262 suite bartholomea with keyring /usr/share/keyrings/tanglu-archive-keyring.gpg 512s D: 2238 5262 suite aequorea with keyring /usr/share/keyrings/tanglu-archive-keyring.gpg 512s D: 2238 5262 suite hoary with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite hardy with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite dapper with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite maverick with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite feisty with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite hirsute with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite edgy with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite karmic with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite yakkety with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite quantal with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite precise with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite raring with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite oneiric with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite saucy with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite kinetic with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite impish with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite gutsy with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite groovy with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite breezy with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite trusty with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite artful with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite vivid with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite natty with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite lunar with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite disco with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite utopic with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite intrepid with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite xenial with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite wily with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite plucky with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite bionic with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite warty with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite focal with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite mantic with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite cosmic with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite noble with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite eoan with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite lucid with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite oracular with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite jaunty with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite jammy with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite zesty with keyring /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s D: 2238 5262 suite kali-rolling with keyring /usr/share/keyrings/kali-archive-keyring.gpg 512s D: 2238 5262 suite kali-dev with keyring /usr/share/keyrings/kali-archive-keyring.gpg 512s D: 2238 5262 suite kali-bleeding-edge with keyring /usr/share/keyrings/kali-archive-keyring.gpg 512s D: 2238 5262 suite bookworm with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite woody with keyring /usr/share/keyrings/debian-archive-removed-keys.gpg 512s D: 2238 5262 suite jessie with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite lenny with keyring /usr/share/keyrings/debian-archive-removed-keys.gpg 512s D: 2238 5262 suite buster with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite hamm with keyring /usr/share/keyrings/debian-archive-removed-keys.gpg 512s D: 2238 5262 suite sarge with keyring /usr/share/keyrings/debian-archive-removed-keys.gpg 512s D: 2238 5262 suite oldstable with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite slink with keyring /usr/share/keyrings/debian-archive-removed-keys.gpg 512s D: 2238 5262 suite bullseye with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite stretch with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite experimental with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite buzz with keyring /usr/share/keyrings/debian-archive-removed-keys.gpg 512s D: 2238 5262 suite sid with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite wheezy with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite trixie with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite squeeze with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite forky with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite unstable with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 5262 suite bo with keyring /usr/share/keyrings/debian-archive-removed-keys.gpg 512s D: 2238 5262 suite potato with keyring /usr/share/keyrings/debian-archive-removed-keys.gpg 512s D: 2238 5262 suite rex with keyring /usr/share/keyrings/debian-archive-removed-keys.gpg 512s D: 2238 5262 suite etch with keyring /usr/share/keyrings/debian-archive-removed-keys.gpg 512s D: 2238 5262 suite stable with keyring /usr/share/keyrings/debian-archive-keyring.gpg 512s D: 2238 6366 get_keyring_by_suite() cannot find keyring 512s W: cannot guess apt sources.list entry with empty suite name 512s W: empty apt sources.list 512s D: 2238 6623 sources list entries: 512s I: 2238 6773 automatically chosen format: tar 512s I: 2238 6840 using /tmp/mmdebstrap.6PJyqTOmuA as tempdir 512s D: 2238 7283 starting to listen for hooks 512s D: 2283 4755 listener: reading next command 512s D: 1 2861 aptopts: 512s D: 1 2861 apttrusted: 512s D: 1 2861 apttrustedparts: /etc/apt/trusted.gpg.d/ 512s D: 1 2861 architectures: [s390x,] 512s D: 1 2861 canmount: 1 512s D: 1 2861 components: [main] 512s D: 1 2861 customize_hook: [ARRAY(0x2aa23cbbba8), ARRAY(0x2aa23cb87b0)] 512s D: 1 2861 dpkgopts: 512s D: 1 2861 dryrun: 0 512s D: 1 2861 essential_hook: [] 512s D: 1 2861 extract_hook: [] 512s D: 1 2861 foreignarchs: [] 512s D: 1 2861 format: tar 512s D: 1 2861 havemknod: 0 512s D: 1 2861 hooksock: GLOB 512s D: 1 2861 include: [ca-certificates] 512s D: 1 2861 mode: unshare 512s D: 1 2861 nativearch: s390x 512s D: 1 2861 noop: [] 512s D: 1 2861 root: /tmp/mmdebstrap.6PJyqTOmuA 512s D: 1 2861 setup_hook: [ARRAY(0x2aa23cbbbd8), ARRAY(0x2aa2286c988)] 512s D: 1 2861 skip: [cleanup/apt/lists] 512s D: 1 2861 sourceslists: [] 512s D: 1 2861 suite: 512s D: 1 2861 target: /tmp/autopkgtest.dghVVw/autopkgtest_tmp/chroot.tar 512s D: 1 2861 variant: apt 512s apt 2.9.30 (s390x) 512s Supported modules: 512s *Ver: Standard .deb 512s Pkg: Debian APT solver interface (Priority -1000) 512s Pkg: Debian APT planner interface (Priority -1000) 512s *Pkg: Debian dpkg interface (Priority 30) 512s S.L: 'deb' Debian binary tree 512s S.L: 'deb-src' Debian source tree 512s Idx: EDSP scenario file 512s Idx: EIPP scenario file 512s Idx: Debian Source Index 512s Idx: Debian Package Index 512s Idx: Debian Translation Index 512s Idx: Debian dpkg status file 512s Idx: Debian deb file 512s Idx: Debian dsc file 512s Idx: Debian control file 512s APT ""; 512s APT::Architecture "s390x"; 512s APT::Build-Essential ""; 512s APT::Build-Essential:: "build-essential"; 512s APT::Install-Recommends "false"; 512s APT::Install-Suggests "0"; 512s APT::Key ""; 512s APT::Key::Assert-Pubkey-Algo ">=rsa2048,ed25519,ed448,nistp256,nistp384,nistp512,brainpoolP256r1,brainpoolP320r1,brainpoolP384r1,brainpoolP512r1,secp256k1"; 512s APT::Key::Assert-Pubkey-Algo::Next ">=rsa2048,ed25519,ed448,nistp256,nistp384,nistp512"; 512s APT::Key::Assert-Pubkey-Algo::Future ">=rsa3072,ed25519,ed448"; 512s APT::Sandbox ""; 512s APT::Sandbox::User "_apt"; 512s APT::Architectures ""; 512s APT::Architectures:: "s390x"; 512s APT::Compressor ""; 512s APT::Compressor::. ""; 512s APT::Compressor::.::Name "."; 512s APT::Compressor::.::Extension ""; 512s APT::Compressor::.::Binary ""; 512s APT::Compressor::.::Cost "0"; 512s APT::Compressor::zstd ""; 512s APT::Compressor::zstd::Name "zstd"; 512s APT::Compressor::zstd::Extension ".zst"; 512s APT::Compressor::zstd::Binary "zstd"; 512s APT::Compressor::zstd::Cost "60"; 512s APT::Compressor::zstd::CompressArg ""; 512s APT::Compressor::zstd::CompressArg:: "-19"; 512s APT::Compressor::zstd::UncompressArg ""; 512s APT::Compressor::zstd::UncompressArg:: "-d"; 512s APT::Compressor::lz4 ""; 512s APT::Compressor::lz4::Name "lz4"; 512s APT::Compressor::lz4::Extension ".lz4"; 512s APT::Compressor::lz4::Binary "false"; 512s APT::Compressor::lz4::Cost "50"; 512s APT::Compressor::gzip ""; 512s APT::Compressor::gzip::Name "gzip"; 512s APT::Compressor::gzip::Extension ".gz"; 512s APT::Compressor::gzip::Binary "gzip"; 512s APT::Compressor::gzip::Cost "100"; 512s APT::Compressor::gzip::CompressArg ""; 512s APT::Compressor::gzip::CompressArg:: "-6n"; 512s APT::Compressor::gzip::UncompressArg ""; 512s APT::Compressor::gzip::UncompressArg:: "-d"; 512s APT::Compressor::xz ""; 512s APT::Compressor::xz::Name "xz"; 512s APT::Compressor::xz::Extension ".xz"; 512s APT::Compressor::xz::Binary "xz"; 512s APT::Compressor::xz::Cost "200"; 512s APT::Compressor::xz::CompressArg ""; 512s APT::Compressor::xz::CompressArg:: "-6"; 512s APT::Compressor::xz::UncompressArg ""; 512s APT::Compressor::xz::UncompressArg:: "-d"; 512s APT::Compressor::bzip2 ""; 512s APT::Compressor::bzip2::Name "bzip2"; 512s APT::Compressor::bzip2::Extension ".bz2"; 512s APT::Compressor::bzip2::Binary "bzip2"; 512s APT::Compressor::bzip2::Cost "300"; 512s APT::Compressor::bzip2::CompressArg ""; 512s APT::Compressor::bzip2::CompressArg:: "-6"; 512s APT::Compressor::bzip2::UncompressArg ""; 512s APT::Compressor::bzip2::UncompressArg:: "-d"; 512s APT::Compressor::lzma ""; 512s APT::Compressor::lzma::Name "lzma"; 512s APT::Compressor::lzma::Extension ".lzma"; 512s APT::Compressor::lzma::Binary "xz"; 512s APT::Compressor::lzma::Cost "400"; 512s APT::Compressor::lzma::CompressArg ""; 512s APT::Compressor::lzma::CompressArg:: "--format=lzma"; 512s APT::Compressor::lzma::CompressArg:: "-6"; 512s APT::Compressor::lzma::UncompressArg ""; 512s APT::Compressor::lzma::UncompressArg:: "--format=lzma"; 512s APT::Compressor::lzma::UncompressArg:: "-d"; 512s Dir "/tmp/mmdebstrap.6PJyqTOmuA"; 512s Dir::State "var/lib/apt"; 512s Dir::State::lists "lists/"; 512s Dir::State::cdroms "cdroms.list"; 512s Dir::State::Status "/tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/status"; 512s Dir::State::extended_states "extended_states"; 512s Dir::Cache "var/cache/apt"; 512s Dir::Cache::archives "archives/"; 512s Dir::Cache::srcpkgcache "srcpkgcache.bin"; 512s Dir::Cache::pkgcache "pkgcache.bin"; 512s Dir::Etc "etc/apt"; 512s Dir::Etc::sourcelist "sources.list"; 512s Dir::Etc::sourceparts "sources.list.d"; 512s Dir::Etc::main "apt.conf"; 512s Dir::Etc::netrc "auth.conf"; 512s Dir::Etc::netrcparts "auth.conf.d"; 512s Dir::Etc::parts "apt.conf.d"; 512s Dir::Etc::preferences "preferences"; 512s Dir::Etc::preferencesparts "preferences.d"; 512s Dir::Etc::trustedparts "/etc/apt/trusted.gpg.d/"; 512s Dir::Etc::Trusted ""; 512s Dir::Boot "boot"; 512s Dir::Usr "usr"; 512s Dir::Bin ""; 512s Dir::Bin::methods "/usr/lib/apt/methods"; 512s Dir::Bin::solvers ""; 512s Dir::Bin::solvers:: "/usr/lib/apt/solvers"; 512s Dir::Bin::planners ""; 512s Dir::Bin::planners:: "/usr/lib/apt/planners"; 512s Dir::Bin::dpkg "/usr/bin/dpkg"; 512s Dir::Bin::gzip "/bin/gzip"; 512s Dir::Bin::bzip2 "/bin/bzip2"; 512s Dir::Bin::xz "/usr/bin/xz"; 512s Dir::Bin::lz4 "/usr/bin/lz4"; 512s Dir::Bin::zstd "/usr/bin/zstd"; 512s Dir::Bin::lzma "/usr/bin/xz"; 512s Dir::Media ""; 512s Dir::Media::MountPath "/media/apt"; 512s Dir::Log "var/log/apt"; 512s Dir::Log::Terminal "term.log"; 512s Dir::Log::History "history.log"; 512s Dir::Log::Planner "eipp.log.xz"; 512s Dir::Ignore-Files-Silently ""; 512s Dir::Ignore-Files-Silently:: "~$"; 512s Dir::Ignore-Files-Silently:: "\.disabled$"; 512s Dir::Ignore-Files-Silently:: "\.bak$"; 512s Dir::Ignore-Files-Silently:: "\.dpkg-[a-z]+$"; 512s Dir::Ignore-Files-Silently:: "\.ucf-[a-z]+$"; 512s Dir::Ignore-Files-Silently:: "\.save$"; 512s Dir::Ignore-Files-Silently:: "\.orig$"; 512s Dir::Ignore-Files-Silently:: "\.distUpgrade$"; 512s Acquire ""; 512s Acquire::AllowInsecureRepositories "0"; 512s Acquire::AllowWeakRepositories "0"; 512s Acquire::AllowDowngradeToInsecureRepositories "0"; 512s Acquire::cdrom ""; 512s Acquire::cdrom::mount "/media/cdrom/"; 512s Acquire::IndexTargets ""; 512s Acquire::IndexTargets::deb ""; 512s Acquire::IndexTargets::deb::Packages ""; 512s Acquire::IndexTargets::deb::Packages::MetaKey "$(COMPONENT)/binary-$(ARCHITECTURE)/Packages"; 512s Acquire::IndexTargets::deb::Packages::flatMetaKey "Packages"; 512s Acquire::IndexTargets::deb::Packages::ShortDescription "Packages"; 512s Acquire::IndexTargets::deb::Packages::Description "$(RELEASE)/$(COMPONENT) $(ARCHITECTURE) Packages"; 512s Acquire::IndexTargets::deb::Packages::flatDescription "$(RELEASE) Packages"; 512s Acquire::IndexTargets::deb::Packages::Optional "0"; 512s Acquire::IndexTargets::deb::Translations ""; 512s Acquire::IndexTargets::deb::Translations::MetaKey "$(COMPONENT)/i18n/Translation-$(LANGUAGE)"; 512s Acquire::IndexTargets::deb::Translations::flatMetaKey "$(LANGUAGE)"; 512s Acquire::IndexTargets::deb::Translations::ShortDescription "Translation-$(LANGUAGE)"; 512s Acquire::IndexTargets::deb::Translations::Description "$(RELEASE)/$(COMPONENT) Translation-$(LANGUAGE)"; 512s Acquire::IndexTargets::deb::Translations::flatDescription "$(RELEASE) Translation-$(LANGUAGE)"; 512s Acquire::IndexTargets::deb-src ""; 512s Acquire::IndexTargets::deb-src::Sources ""; 512s Acquire::IndexTargets::deb-src::Sources::MetaKey "$(COMPONENT)/source/Sources"; 512s Acquire::IndexTargets::deb-src::Sources::flatMetaKey "Sources"; 512s Acquire::IndexTargets::deb-src::Sources::ShortDescription "Sources"; 512s Acquire::IndexTargets::deb-src::Sources::Description "$(RELEASE)/$(COMPONENT) Sources"; 512s Acquire::IndexTargets::deb-src::Sources::flatDescription "$(RELEASE) Sources"; 512s Acquire::IndexTargets::deb-src::Sources::Optional "0"; 512s Acquire::Changelogs ""; 512s Acquire::Changelogs::URI ""; 512s Acquire::Changelogs::URI::Origin ""; 512s Acquire::Changelogs::URI::Origin::Debian "https://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog"; 512s Acquire::Changelogs::URI::Origin::Ubuntu "https://changelogs.ubuntu.com/changelogs/pool/@CHANGEPATH@/changelog"; 512s Acquire::Changelogs::AlwaysOnline ""; 512s Acquire::Changelogs::AlwaysOnline::Origin ""; 512s Acquire::Changelogs::AlwaysOnline::Origin::Ubuntu "1"; 512s Acquire::Snapshots ""; 512s Acquire::Snapshots::URI ""; 512s Acquire::Snapshots::URI::Origin ""; 512s Acquire::Snapshots::URI::Origin::Debian "https://snapshot.debian.org/archive/debian/@SNAPSHOTID@/"; 512s Acquire::Snapshots::URI::Origin::Ubuntu "https://snapshot.ubuntu.com/ubuntu/@SNAPSHOTID@/"; 512s Acquire::Snapshots::URI::Override ""; 512s Acquire::Snapshots::URI::Override::Label ""; 512s Acquire::Snapshots::URI::Override::Label::Debian-Security "https://snapshot.debian.org/archive/debian-security/@SNAPSHOTID@/"; 512s Acquire::Snapshots::URI::Host ""; 512s Acquire::Snapshots::URI::Host::archive.ubuntu.com "https://snapshot.ubuntu.com/@PATH@/@SNAPSHOTID@/"; 512s Acquire::Snapshots::URI::Host::deb.debian.org "https://snapshot.debian.org/archive/@PATH@/@SNAPSHOTID@/"; 512s Acquire::Snapshots::URI::Host::.archive.ubuntu.com "https://snapshot.ubuntu.com/@PATH@/@SNAPSHOTID@/"; 512s Acquire::Snapshots::URI::Host::security.ubuntu.com "https://snapshot.ubuntu.com/@PATH@/@SNAPSHOTID@/"; 512s Acquire::Snapshots::URI::Host::ppa.launchpadcontent.net "https://snapshot.ppa.launchpadcontent.net/@PATH@/@SNAPSHOTID@/"; 512s Acquire::Snapshots::URI::Host::ppa.launchpad.net "https://snapshot.ppa.launchpadcontent.net/@PATH@/@SNAPSHOTID@/"; 512s Acquire::Languages ""; 512s Acquire::Languages:: "none"; 512s Acquire::CompressionTypes ""; 512s Acquire::CompressionTypes::xz "xz"; 512s Acquire::CompressionTypes::bz2 "bzip2"; 512s Acquire::CompressionTypes::lzma "lzma"; 512s Acquire::CompressionTypes::gz "gzip"; 512s Acquire::CompressionTypes::lz4 "lz4"; 512s Acquire::CompressionTypes::zst "zstd"; 512s DPkg ""; 512s DPkg::Path "/usr/sbin:/usr/bin:/sbin:/bin"; 512s DPkg::Chroot-Directory "/tmp/mmdebstrap.6PJyqTOmuA"; 512s pkgCacheGen ""; 512s pkgCacheGen::ForceEssential ","; 512s Binary "apt-config"; 512s Binary::apt-cdrom ""; 512s Binary::apt-cdrom::APT ""; 512s Binary::apt-cdrom::APT::Internal ""; 512s Binary::apt-cdrom::APT::Internal::OpProgress ""; 512s Binary::apt-cdrom::APT::Internal::OpProgress::EraseLines "0"; 512s Binary::apt ""; 512s Binary::apt::APT ""; 512s Binary::apt::APT::Color "1"; 512s Binary::apt::APT::Output-Version "30"; 512s Binary::apt::APT::Cache ""; 512s Binary::apt::APT::Cache::Show ""; 512s Binary::apt::APT::Cache::Show::Version "2"; 512s Binary::apt::APT::Cache::AllVersions "0"; 512s Binary::apt::APT::Cache::ShowVirtuals "1"; 512s Binary::apt::APT::Cache::Search ""; 512s Binary::apt::APT::Cache::Search::Version "2"; 512s Binary::apt::APT::Cache::ShowDependencyType "1"; 512s Binary::apt::APT::Cache::ShowVersion "1"; 512s Binary::apt::APT::Get ""; 512s Binary::apt::APT::Get::Upgrade-Allow-New "1"; 512s Binary::apt::APT::Get::Update ""; 512s Binary::apt::APT::Get::Update::InteractiveReleaseInfoChanges "1"; 512s Binary::apt::APT::Cmd ""; 512s Binary::apt::APT::Cmd::Show-Update-Stats "1"; 512s Binary::apt::APT::Cmd::Pattern-Only "1"; 512s Binary::apt::APT::Keep-Downloaded-Packages "0"; 512s Binary::apt::DPkg ""; 512s Binary::apt::DPkg::Progress-Fancy "1"; 512s Binary::apt::DPkg::Lock ""; 512s Binary::apt::DPkg::Lock::Timeout "120"; 512s Binary::apt::Pager "1"; 512s CommandLine ""; 512s CommandLine::AsString "apt-config dump"; 512s D: 1 3356 content of /tmp/mmdebstrap.6PJyqTOmuA/tmp/mmdebstrap.apt.conf.CM0iWSjLVZl9: 512s Apt::Architecture "s390x"; 512s Apt::Architectures "s390x"; 512s Dir "/tmp/mmdebstrap.6PJyqTOmuA"; 512s DPkg::Chroot-Directory "/tmp/mmdebstrap.6PJyqTOmuA"; 512s Dir::State::Status "/tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/status"; 512s Dir::Etc::Trusted ""; 512s Dir::Etc::TrustedParts "/etc/apt/trusted.gpg.d/"; 512s pkgCacheGen::ForceEssential ","; 512s I: 1 2811 running --setup-hook directly: /usr/share/mmdebstrap/hooks/copy-host-apt-sources-and-preferences/setup00.sh /tmp/mmdebstrap.6PJyqTOmuA 512s + [ -n ] 512s + rootdir=/tmp/mmdebstrap.6PJyqTOmuA 512s + SOURCELIST=/etc/apt/sources.list 512s + apt-config shell SOURCELIST Dir::Etc::SourceList/f 512s + eval SOURCELIST='/etc/apt/sources.list' 512s + SOURCELIST=/etc/apt/sources.list 512s + SOURCEPARTS=/etc/apt/sources.d/ 512s + apt-config shell SOURCEPARTS Dir::Etc::SourceParts/d 512s + eval SOURCEPARTS='/etc/apt/sources.list.d/' 512s + SOURCEPARTS=/etc/apt/sources.list.d/ 512s + PREFERENCES=/etc/apt/preferences 512s + apt-config shell PREFERENCES Dir::Etc::Preferences/f 512s + eval PREFERENCES='/etc/apt/preferences' 512s + PREFERENCES=/etc/apt/preferences 512s + PREFERENCESPARTS=/etc/apt/preferences.d/ 512s + apt-config shell PREFERENCESPARTS Dir::Etc::PreferencesParts/d 512s + eval PREFERENCESPARTS='/etc/apt/preferences.d/' 512s + PREFERENCESPARTS=/etc/apt/preferences.d/ 512s + [ -e /etc/apt/sources.list ] 512s + continue 512s + [ -e /etc/apt/sources.list.d//*.list ] 512s + continue 512s + [ -e /etc/apt/sources.list.d//autopkgtest-add-apt-release-plucky-proposed.sources ] 512s + dirname /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/sources.list.d//autopkgtest-add-apt-release-plucky-proposed.sources 512s + mkdir --parents /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/sources.list.d 512s + [ -e /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/sources.list.d//autopkgtest-add-apt-release-plucky-proposed.sources ] 512s + cat /etc/apt/sources.list.d//autopkgtest-add-apt-release-plucky-proposed.sources 512s + [ 3 -ge 3 ] 512s + echo D: contents of /etc/apt/sources.list.d//autopkgtest-add-apt-release-plucky-proposed.sources inside the chroot: 512s D: contents of /etc/apt/sources.list.d//autopkgtest-add-apt-release-plucky-proposed.sources inside the chroot: 512s + cat /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/sources.list.d//autopkgtest-add-apt-release-plucky-proposed.sources 512s Types: deb deb-src 512s URIs: http://ftpmaster.internal/ubuntu/ 512s Suites: plucky-proposed 512s Components: main restricted universe multiverse 512s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s 512s + [ -e /etc/apt/sources.list.d//ubuntu.sources ] 512s + dirname /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/sources.list.d//ubuntu.sources 512s + mkdir --parents /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/sources.list.d 512s + [ -e /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/sources.list.d//ubuntu.sources ] 512s + cat /etc/apt/sources.list.d//ubuntu.sources 512s + [ 3 -ge 3 ] 512s + echo D: contents of /etc/apt/sources.list.d//ubuntu.sources inside the chroot: 512s D: contents of /etc/apt/sources.list.d//ubuntu.sources inside the chroot: 512s + cat /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/sources.list.d//ubuntu.sources 512s Types: deb deb-src 512s URIs: http://ftpmaster.internal/ubuntu/ 512s Suites: plucky plucky-updates plucky-security 512s Components: main restricted universe multiverse 512s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 512s + [ -e /etc/apt/preferences ] 512s + continue 512s + [ -e /etc/apt/preferences.d//autopkgtest-plucky-proposed.pref ] 512s + dirname /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d//autopkgtest-plucky-proposed.pref 512s + mkdir --parents /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d 512s + [ -e /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d//autopkgtest-plucky-proposed.pref ] 512s + cat /etc/apt/preferences.d//autopkgtest-plucky-proposed.pref 512s + [ 3 -ge 3 ] 512s + echo D: contents of /etc/apt/preferences.d//autopkgtest-plucky-proposed.pref inside the chroot: 512s D: contents of /etc/apt/preferences.d//autopkgtest-plucky-proposed.pref inside the chroot: 512s + cat /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d//autopkgtest-plucky-proposed.pref 512s Package: * 512s Pin: release plucky-proposed 512s Pin-Priority: 100 512s 512s Package: src:sudo:any 512s Pin: release plucky-proposed 512s Pin-Priority: 995 512s + [ -e /etc/apt/preferences.d//autopkgtest-zz-plucky-proposed-baseline.pref ] 512s + dirname /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d//autopkgtest-zz-plucky-proposed-baseline.pref 512s + mkdir --parents /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d 512s + [ -e /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d//autopkgtest-zz-plucky-proposed-baseline.pref ] 512s + cat /etc/apt/preferences.d//autopkgtest-zz-plucky-proposed-baseline.pref 512s + [ 3 -ge 3 ] 512s + echo D: contents of /etc/apt/preferences.d//autopkgtest-zz-plucky-proposed-baseline.pref inside the chroot: 512s D: contents of /etc/apt/preferences.d//autopkgtest-zz-plucky-proposed-baseline.pref inside the chroot: 512s + cat /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d//autopkgtest-zz-plucky-proposed-baseline.pref 512s Package: * 512s Pin: release plucky-proposed 512s Pin-Priority: 500 512s + [ -e /etc/apt/preferences.d//ubuntu-pro-esm-apps ] 512s + dirname /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d//ubuntu-pro-esm-apps 512s + mkdir --parents /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d 512s + [ -e /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d//ubuntu-pro-esm-apps ] 512s + cat /etc/apt/preferences.d//ubuntu-pro-esm-apps 512s + [ 3 -ge 3 ] 512s + echo D: contents of /etc/apt/preferences.d//ubuntu-pro-esm-apps inside the chroot: 512s D: contents of /etc/apt/preferences.d//ubuntu-pro-esm-apps inside the chroot: 512s + cat /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d//ubuntu-pro-esm-apps 512s # This file is used by Ubuntu Pro and supplied by the ubuntu-pro-client 512s # package. It has no effect if Ubuntu Pro services are not in use since no 512s # other apt repositories are expected to match o=UbuntuESMApps. 512s # 512s # Pin esm-apps packages to a slightly higher value than the default, 512s # so those are preferred over a non-ESM package from the archive when the 512s # service is enabled. 512s 512s Package: * 512s Pin: release o=UbuntuESMApps 512s Pin-Priority: 510 512s + [ -e /etc/apt/preferences.d//ubuntu-pro-esm-infra ] 512s + dirname /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d//ubuntu-pro-esm-infra 512s + mkdir --parents /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d 512s + [ -e /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d//ubuntu-pro-esm-infra ] 512s + cat /etc/apt/preferences.d//ubuntu-pro-esm-infra 512s + [ 3 -ge 3 ] 512s + echo D: contents of /etc/apt/preferences.d//ubuntu-pro-esm-infra inside the chroot: 512s D: contents of /etc/apt/preferences.d//ubuntu-pro-esm-infra inside the chroot: 512s + cat /tmp/mmdebstrap.6PJyqTOmuA//etc/apt/preferences.d//ubuntu-pro-esm-infra 512s # This file is used by Ubuntu Pro and supplied by the ubuntu-pro-client 512s # package. It has no effect if Ubuntu Pro services are not in use since no 512s # other apt repositories are expected to match o=UbuntuESM. 512s # 512s # Pin esm-infra packages to a slightly higher value than the default, 512s # so those are preferred over a non-ESM package from the archive when the 512s # service is enabled. 512s Package: * 512s Pin: release o=UbuntuESM 512s Pin-Priority: 510 512s I: 1 2811 running --setup-hook directly: /usr/share/mmdebstrap/hooks/file-mirror-automount/setup00.sh /tmp/mmdebstrap.6PJyqTOmuA 512s + rootdir=/tmp/mmdebstrap.6PJyqTOmuA 512s + env APT_CONFIG=/tmp/mmdebstrap.6PJyqTOmuA/tmp/mmdebstrap.apt.conf.CM0iWSjLVZl9 apt-get indextargets --no-release-info --format $(REPO_URI) 512s + sed -ne s/^file:\/\+//p 512s + + sort -u 512s read -r path 512s + set -f 512s + IFS=, 512s + set +f 512s + unset IFS 512s + continue 512s + set +f 512s + unset IFS 512s I: 1 3419 running apt-get update... 512s D: 1 1852 run_progress: exec apt-get update --error-on=any -oDebug::pkgProblemResolver=true -oDebug::pkgDepCache::Marker=1 -oDebug::pkgDepCache::AutoInstall=1 -oAPT::Status-Fd=${FD} -oDpkg::Use-Pty=false 512s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 512s Get:2 http://ftpmaster.internal/ubuntu plucky InRelease [249 kB] 512s Get:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease [110 kB] 512s Get:4 http://ftpmaster.internal/ubuntu plucky-security InRelease [110 kB] 512s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [739 kB] 512s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [81.0 kB] 512s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 512s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [16.3 kB] 512s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [106 kB] 512s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [665 kB] 512s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5472 B] 512s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 512s Get:13 http://ftpmaster.internal/ubuntu plucky/restricted Sources [16.3 kB] 512s Get:14 http://ftpmaster.internal/ubuntu plucky/universe Sources [21.0 MB] 513s Get:15 http://ftpmaster.internal/ubuntu plucky/multiverse Sources [299 kB] 513s Get:16 http://ftpmaster.internal/ubuntu plucky/main Sources [1384 kB] 513s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x Packages [1388 kB] 514s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x Packages [15.2 MB] 514s Get:19 http://ftpmaster.internal/ubuntu plucky/restricted s390x Packages [2584 B] 514s Get:20 http://ftpmaster.internal/ubuntu plucky/multiverse s390x Packages [168 kB] 517s Fetched 41.7 MB in 6s (7189 kB/s) 518s Reading package lists... 518s I: 1 2099 downloading packages with apt... 518s D: 1 1852 run_progress: exec apt-get --yes -oDebug::pkgDpkgPm=1 -oDir::Log=/dev/null -oAPT::Keep-Fds::=8 -oDPkg::Tools::options::'cat >&8'::InfoFD=8 -oDpkg::Pre-Install-Pkgs::=cat >&8 -oDebug::NoLocking=1 -oDpkg::Use-Pty=0 -oDPkg::Chroot-Directory= install ?narrow(?architecture(s390x),?essential) -oDebug::pkgProblemResolver=true -oDebug::pkgDepCache::Marker=1 -oDebug::pkgDepCache::AutoInstall=1 -oAPT::Status-Fd=${FD} -oDpkg::Use-Pty=false 518s Reading package lists... 518s Building dependency tree... 518s MarkInstall init-system-helpers:s390x < none -> 1.68 @un puN > FU=1 518s MarkInstall base-passwd:s390x < none -> 3.6.6 @un puN Ib > FU=1 518s Installing libc6:s390x as Depends of base-passwd:s390x 518s MarkInstall libc6:s390x < none -> 2.40-4ubuntu1 @un puN Ib > FU=0 518s Installing libgcc-s1:s390x as Depends of libc6:s390x 518s MarkInstall libgcc-s1:s390x < none -> 15-20250213-1ubuntu1 @un puN Ib > FU=0 518s Installing gcc-15-base:s390x as Depends of libgcc-s1:s390x 518s MarkInstall gcc-15-base:s390x < none -> 15-20250213-1ubuntu1 @un puN > FU=0 518s Installing libdebconfclient0:s390x as Depends of base-passwd:s390x 518s MarkInstall libdebconfclient0:s390x < none -> 0.274ubuntu1 @un puN > FU=0 518s Installing libselinux1:s390x as Depends of base-passwd:s390x 518s MarkInstall libselinux1:s390x < none -> 3.7-3ubuntu2 @un puN Ib > FU=0 518s Installing libpcre2-8-0:s390x as Depends of libselinux1:s390x 518s MarkInstall libpcre2-8-0:s390x < none -> 10.42-4ubuntu3 @un puN > FU=0 518s MarkInstall debianutils:s390x < none -> 5.21 @un puN > FU=1 518s MarkInstall dpkg:s390x < none -> 1.22.11ubuntu4 @un puN Ib > FU=1 518s Installing libbz2-1.0:s390x as PreDepends of dpkg:s390x 518s MarkInstall libbz2-1.0:s390x < none -> 1.0.8-6 @un puN > FU=0 518s Installing liblzma5:s390x as PreDepends of dpkg:s390x 518s MarkInstall liblzma5:s390x < none -> 5.6.3-1 @un puN > FU=0 518s Installing libmd0:s390x as PreDepends of dpkg:s390x 518s MarkInstall libmd0:s390x < none -> 1.1.0-2build2 @un puN > FU=0 518s Installing libzstd1:s390x as PreDepends of dpkg:s390x 518s MarkInstall libzstd1:s390x < none -> 1.5.6+dfsg-2 @un puN > FU=0 518s Installing zlib1g:s390x as PreDepends of dpkg:s390x 518s MarkInstall zlib1g:s390x < none -> 1:1.3.dfsg+really1.3.1-1ubuntu1 @un puN > FU=0 518s MarkInstall tar:s390x < none -> 1.35+dfsg-3.1 @un puN Ib > FU=1 518s Installing libacl1:s390x as PreDepends of tar:s390x 518s MarkInstall libacl1:s390x < none -> 2.3.2-2 @un puN > FU=0 518s MarkInstall libc-bin:s390x < none -> 2.40-4ubuntu1 @un puN > FU=1 518s MarkInstall base-files:s390x < none -> 13.5ubuntu3 @un puN Ib > FU=1 518s Installing mawk:s390x as PreDepends of base-files:s390x 518s MarkInstall mawk:s390x < none -> 1.3.4.20250131-1 @un uN > FU=0 518s Installing libcrypt1:s390x as Depends of base-files:s390x 518s MarkInstall libcrypt1:s390x < none -> 1:4.4.38-1 @un puN > FU=0 518s MarkInstall perl-base:s390x < none -> 5.40.0-8 @un puN > FU=1 518s MarkInstall coreutils:s390x < none -> 9.5-1ubuntu1 @un puN Ib > FU=1 518s Installing libattr1:s390x as PreDepends of coreutils:s390x 518s MarkInstall libattr1:s390x < none -> 1:2.5.2-2 @un puN > FU=0 518s Installing libgmp10:s390x as PreDepends of coreutils:s390x 518s MarkInstall libgmp10:s390x < none -> 2:6.3.0+dfsg-2ubuntu7 @un puN > FU=0 518s Installing libssl3t64:s390x as PreDepends of coreutils:s390x 518s MarkInstall libssl3t64:s390x < none -> 3.4.0-1ubuntu2 @un puN Ib > FU=0 518s Installing openssl-provider-legacy:s390x as Depends of libssl3t64:s390x 518s MarkInstall openssl-provider-legacy:s390x < none -> 3.4.0-1ubuntu2 @un puN > FU=0 518s MarkInstall ncurses-base:s390x < none -> 6.5+20250125-2 @un puN > FU=1 518s MarkInstall ncurses-bin:s390x < none -> 6.5+20250125-2 @un puN Ib > FU=1 518s Installing libtinfo6:s390x as PreDepends of ncurses-bin:s390x 518s MarkInstall libtinfo6:s390x < none -> 6.5+20250125-2 @un puN > FU=0 518s MarkInstall diffutils:s390x < none -> 1:3.10-2 @un puN > FU=1 518s MarkInstall sysvinit-utils:s390x < none -> 3.14-1ubuntu1 @un puN > FU=1 518s MarkInstall dash:s390x < none -> 0.5.12-12ubuntu1 @un puN > FU=1 518s MarkInstall util-linux:s390x < none -> 2.40.2-14ubuntu1 @un puN Ib > FU=1 518s Installing libpam-modules:s390x as PreDepends of util-linux:s390x 518s MarkInstall libpam-modules:s390x < none -> 1.5.3-7ubuntu4 @un puN Ib > FU=0 518s Installing libaudit1:s390x as PreDepends of libpam-modules:s390x 518s MarkInstall libaudit1:s390x < none -> 1:4.0.2-2ubuntu1 @un puN Ib > FU=0 518s Installing libaudit-common:s390x as Depends of libaudit1:s390x 518s MarkInstall libaudit-common:s390x < none -> 1:4.0.2-2ubuntu1 @un puN > FU=0 518s Installing libcap-ng0:s390x as Depends of libaudit1:s390x 518s MarkInstall libcap-ng0:s390x < none -> 0.8.5-4 @un puN > FU=0 518s Installing libdb5.3t64:s390x as PreDepends of libpam-modules:s390x 518s MarkInstall libdb5.3t64:s390x < none -> 5.3.28+dfsg2-9 @un puN > FU=0 518s Installing libpam0g:s390x as PreDepends of libpam-modules:s390x 518s MarkInstall libpam0g:s390x < none -> 1.5.3-7ubuntu4 @un puN Ib > FU=0 518s Installing debconf:s390x as Depends of libpam0g:s390x 518s MarkInstall debconf:s390x < none -> 1.5.87ubuntu1 @un uN > FU=0 518s Installing libsystemd0:s390x as PreDepends of libpam-modules:s390x 518s MarkInstall libsystemd0:s390x < none -> 257.2-3ubuntu1 @un puN Ib > FU=0 518s Installing libcap2:s390x as Depends of libsystemd0:s390x 518s MarkInstall libcap2:s390x < none -> 1:2.66-5ubuntu3 @un puN > FU=0 518s Installing libpam-modules-bin:s390x as PreDepends of libpam-modules:s390x 518s MarkInstall libpam-modules-bin:s390x < none -> 1.5.3-7ubuntu4 @un puN > FU=0 518s Installing libpam-runtime:s390x as PreDepends of util-linux:s390x 518s MarkInstall libpam-runtime:s390x < none -> 1.5.3-7ubuntu4 @un puN > FU=0 518s Installing libblkid1:s390x as PreDepends of util-linux:s390x 518s MarkInstall libblkid1:s390x < none -> 2.40.2-14ubuntu1 @un puN > FU=0 518s Installing libmount1:s390x as PreDepends of util-linux:s390x 518s MarkInstall libmount1:s390x < none -> 2.40.2-14ubuntu1 @un puN > FU=0 518s Installing libsmartcols1:s390x as PreDepends of util-linux:s390x 518s MarkInstall libsmartcols1:s390x < none -> 2.40.2-14ubuntu1 @un puN > FU=0 518s Installing libudev1:s390x as PreDepends of util-linux:s390x 518s MarkInstall libudev1:s390x < none -> 257.2-3ubuntu1 @un puN > FU=0 518s Installing libuuid1:s390x as PreDepends of util-linux:s390x 518s MarkInstall libuuid1:s390x < none -> 2.40.2-14ubuntu1 @un puN > FU=0 518s MarkInstall bash:s390x < none -> 5.2.37-1ubuntu1 @un puN > FU=1 518s MarkInstall bsdutils:s390x < none -> 1:2.40.2-14ubuntu1 @un puN > FU=1 518s MarkInstall findutils:s390x < none -> 4.10.0-3 @un puN > FU=1 518s MarkInstall sed:s390x < none -> 4.9-2build1 @un puN > FU=1 518s MarkInstall grep:s390x < none -> 3.11-4build1 @un puN > FU=1 518s MarkInstall gzip:s390x < none -> 1.13-1ubuntu2 @un puN > FU=1 518s MarkInstall hostname:s390x < none -> 3.25 @un puN > FU=1 518s Starting pkgProblemResolver with broken count: 0 519s Starting 2 pkgProblemResolver with broken count: 0 519s Done 519s Ignore MarkGarbage of libsmartcols1:s390x < none -> 2.40.2-14ubuntu1 @un puN > as its mode (Install) is protected 519s Ignore MarkGarbage of libpam-runtime:s390x < none -> 1.5.3-7ubuntu4 @un puN > as its mode (Install) is protected 519s Ignore MarkGarbage of libtinfo6:s390x < none -> 6.5+20250125-2 @un puN > as its mode (Install) is protected 519s Ignore MarkGarbage of libmount1:s390x < none -> 2.40.2-14ubuntu1 @un puN > as its mode (Install) is protected 519s The following additional packages will be installed: 519s debconf gcc-15-base libacl1 libattr1 libaudit-common libaudit1 libblkid1 519s libbz2-1.0 libc6 libcap-ng0 libcap2 libcrypt1 libdb5.3t64 libdebconfclient0 519s libgcc-s1 libgmp10 liblzma5 libmd0 libmount1 libpam-modules 519s libpam-modules-bin libpam-runtime libpam0g libpcre2-8-0 libselinux1 519s libsmartcols1 libssl3t64 libsystemd0 libtinfo6 libudev1 libuuid1 libzstd1 519s mawk openssl-provider-legacy zlib1g 519s Suggested packages: 519s bash-doc debconf-doc debconf-kde-helper debconf-utils libgtk3-perl 519s libnet-ldap-perl libterm-readline-gnu-perl perl whiptail | dialog 519s diffutils-doc wdiff apt debsig-verify less manpages glibc-doc locales 519s libnss-nis libnss-nisplus cryptsetup-bin libpam-doc libgcrypt20 liblz4-1 519s libidn2-0 uuid-runtime sensible-utils bzip2 ncompress xz-utils tar-scripts 519s tar-doc dosfstools kbd util-linux-extra util-linux-locales wtmpdb 519s Recommended packages: 519s bash-completion bsdextrautils apt | apt-utils debconf-i18n libidn2-0 519s sensible-utils 519s The following NEW packages will be installed: 519s base-files base-passwd bash bsdutils coreutils dash debconf debianutils 519s diffutils dpkg findutils gcc-15-base grep gzip hostname init-system-helpers 519s libacl1 libattr1 libaudit-common libaudit1 libblkid1 libbz2-1.0 libc-bin 519s libc6 libcap-ng0 libcap2 libcrypt1 libdb5.3t64 libdebconfclient0 libgcc-s1 519s libgmp10 liblzma5 libmd0 libmount1 libpam-modules libpam-modules-bin 519s libpam-runtime libpam0g libpcre2-8-0 libselinux1 libsmartcols1 libssl3t64 519s libsystemd0 libtinfo6 libudev1 libuuid1 libzstd1 mawk ncurses-base 519s ncurses-bin openssl-provider-legacy perl-base sed sysvinit-utils tar 519s util-linux zlib1g 519s 0 upgraded, 57 newly installed, 0 to remove and 0 not upgraded. 519s Need to get 18.5 MB of archives. 519s After this operation, 64.6 MB of additional disk space will be used. 519s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-15-base s390x 15-20250213-1ubuntu1 [53.3 kB] 519s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libc6 s390x 2.40-4ubuntu1 [2861 kB] 519s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 15-20250213-1ubuntu1 [35.7 kB] 519s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x mawk s390x 1.3.4.20250131-1 [136 kB] 519s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libcrypt1 s390x 1:4.4.38-1 [88.0 kB] 519s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x base-files s390x 13.5ubuntu3 [75.4 kB] 519s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtinfo6 s390x 6.5+20250125-2 [117 kB] 519s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x debianutils s390x 5.21 [93.3 kB] 519s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x bash s390x 5.2.37-1ubuntu1 [846 kB] 519s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libcap2 s390x 1:2.66-5ubuntu3 [31.4 kB] 519s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libsystemd0 s390x 257.2-3ubuntu1 [534 kB] 519s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x bsdutils s390x 1:2.40.2-14ubuntu1 [103 kB] 520s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libacl1 s390x 2.3.2-2 [17.9 kB] 520s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libattr1 s390x 1:2.5.2-2 [11.9 kB] 520s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libgmp10 s390x 2:6.3.0+dfsg-2ubuntu7 [342 kB] 520s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-8-0 s390x 10.42-4ubuntu3 [250 kB] 520s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libselinux1 s390x 3.7-3ubuntu2 [85.2 kB] 520s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libzstd1 s390x 1.5.6+dfsg-2 [340 kB] 520s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [70.0 kB] 520s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libssl3t64 s390x 3.4.0-1ubuntu2 [1888 kB] 520s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x openssl-provider-legacy s390x 3.4.0-1ubuntu2 [37.8 kB] 520s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x coreutils s390x 9.5-1ubuntu1 [1464 kB] 520s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 520s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x diffutils s390x 1:3.10-2 [199 kB] 520s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libbz2-1.0 s390x 1.0.8-6 [39.6 kB] 520s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x liblzma5 s390x 5.6.3-1 [145 kB] 520s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libmd0 s390x 1.1.0-2build2 [24.4 kB] 520s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x tar s390x 1.35+dfsg-3.1 [271 kB] 520s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dpkg s390x 1.22.11ubuntu4 [1287 kB] 520s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x findutils s390x 4.10.0-3 [315 kB] 520s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x grep s390x 3.11-4build1 [173 kB] 520s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x gzip s390x 1.13-1ubuntu2 [107 kB] 520s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x hostname s390x 3.25 [11.2 kB] 520s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x ncurses-bin s390x 6.5+20250125-2 [197 kB] 520s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x perl-base s390x 5.40.0-8 [1971 kB] 520s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x sed s390x 4.9-2build1 [198 kB] 520s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libaudit-common all 1:4.0.2-2ubuntu1 [6578 B] 520s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libcap-ng0 s390x 0.8.5-4 [15.8 kB] 520s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libaudit1 s390x 1:4.0.2-2ubuntu1 [52.5 kB] 520s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libdb5.3t64 s390x 5.3.28+dfsg2-9 [774 kB] 520s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x debconf all 1.5.87ubuntu1 [124 kB] 520s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpam0g s390x 1.5.3-7ubuntu4 [70.0 kB] 520s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libpam-modules-bin s390x 1.5.3-7ubuntu4 [56.2 kB] 520s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libpam-modules s390x 1.5.3-7ubuntu4 [294 kB] 520s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libpam-runtime all 1.5.3-7ubuntu4 [40.8 kB] 520s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libblkid1 s390x 2.40.2-14ubuntu1 [134 kB] 520s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libmount1 s390x 2.40.2-14ubuntu1 [158 kB] 520s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libsmartcols1 s390x 2.40.2-14ubuntu1 [89.5 kB] 520s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libudev1 s390x 257.2-3ubuntu1 [204 kB] 520s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libuuid1 s390x 2.40.2-14ubuntu1 [42.4 kB] 520s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x util-linux s390x 2.40.2-14ubuntu1 [1129 kB] 520s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libdebconfclient0 s390x 0.274ubuntu1 [11.7 kB] 520s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x base-passwd s390x 3.6.6 [53.7 kB] 520s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x init-system-helpers all 1.68 [39.0 kB] 520s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libc-bin s390x 2.40-4ubuntu1 [665 kB] 520s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x ncurses-base all 6.5+20250125-2 [25.8 kB] 520s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/gcc-15-base_15-20250213-1ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure gcc-15-base:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libc6_2.40-4ubuntu1_s390x.deb /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libgcc-s1_15-20250213-1ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libgcc-s1:s390x libc6:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/mawk_1.3.4.20250131-1_s390x.deb /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libcrypt1_1%3a4.4.38-1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libcrypt1:s390x mawk:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/base-files_13.5ubuntu3_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure base-files:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libtinfo6_6.5+20250125-2_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libtinfo6:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/debianutils_5.21_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure debianutils:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/bash_5.2.37-1ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure bash:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libcap2_1%3a2.66-5ubuntu3_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libcap2:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libsystemd0_257.2-3ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libsystemd0:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/bsdutils_1%3a2.40.2-14ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure bsdutils:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libacl1_2.3.2-2_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libacl1:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libattr1_1%3a2.5.2-2_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libattr1:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libgmp10_2%3a6.3.0+dfsg-2ubuntu7_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libgmp10:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libpcre2-8-0_10.42-4ubuntu3_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libpcre2-8-0:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libselinux1_3.7-3ubuntu2_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libselinux1:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libzstd1_1.5.6+dfsg-2_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libzstd1:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/zlib1g_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure zlib1g:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libssl3t64_3.4.0-1ubuntu2_s390x.deb /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/openssl-provider-legacy_3.4.0-1ubuntu2_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure openssl-provider-legacy:s390x libssl3t64:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/coreutils_9.5-1ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure coreutils:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/dash_0.5.12-12ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure dash:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/diffutils_1%3a3.10-2_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure diffutils:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libbz2-1.0_1.0.8-6_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libbz2-1.0:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/liblzma5_5.6.3-1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure liblzma5:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libmd0_1.1.0-2build2_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libmd0:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/tar_1.35+dfsg-3.1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure tar:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/dpkg_1.22.11ubuntu4_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure dpkg:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/findutils_4.10.0-3_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure findutils:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/grep_3.11-4build1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure grep:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/gzip_1.13-1ubuntu2_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure gzip:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/hostname_3.25_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure hostname:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/ncurses-bin_6.5+20250125-2_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure ncurses-bin:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/perl-base_5.40.0-8_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure perl-base:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/sed_4.9-2build1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure sed:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libaudit-common_1%3a4.0.2-2ubuntu1_all.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libaudit-common:all 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libcap-ng0_0.8.5-4_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libcap-ng0:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libaudit1_1%3a4.0.2-2ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libaudit1:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libdb5.3t64_5.3.28+dfsg2-9_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libdb5.3t64:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/debconf_1.5.87ubuntu1_all.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure debconf:all 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libpam0g_1.5.3-7ubuntu4_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libpam0g:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libpam-modules-bin_1.5.3-7ubuntu4_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libpam-modules-bin:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libpam-modules_1.5.3-7ubuntu4_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libpam-modules:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libpam-runtime_1.5.3-7ubuntu4_all.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libpam-runtime:all 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libblkid1_2.40.2-14ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libblkid1:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libmount1_2.40.2-14ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libmount1:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libsmartcols1_2.40.2-14ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libsmartcols1:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libudev1_257.2-3ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libudev1:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libuuid1_2.40.2-14ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libuuid1:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/util-linux_2.40.2-14ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure util-linux:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libdebconfclient0_0.274ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libdebconfclient0:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/base-passwd_3.6.6_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure base-passwd:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/init-system-helpers_1.68_all.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure init-system-helpers:all 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/libc-bin_2.40-4ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure libc-bin:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/ncurses-base_6.5+20250125-2_all.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure ncurses-base:all 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --unpack --auto-deconfigure /tmp/mmdebstrap.6PJyqTOmuA/var/cache/apt/archives/sysvinit-utils_3.14-1ubuntu1_s390x.deb 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --no-triggers --configure sysvinit-utils:s390x 520s /usr/bin/dpkg --admindir /tmp/mmdebstrap.6PJyqTOmuA/var/lib/dpkg/ --status-fd 16 --configure --pending 520s Fetched 18.5 MB in 2s (12.4 MB/s) 520s I: 1 3591 extracting archives... 520s D: 74 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/gcc-15-base_15-20250213-1ubuntu1_s390x.deb 520s D: 75 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 78 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libc6_2.40-4ubuntu1_s390x.deb 520s D: 79 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 82 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libgcc-s1_15-20250213-1ubuntu1_s390x.deb 520s D: 83 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 86 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/mawk_1.3.4.20250131-1_s390x.deb 520s D: 87 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 90 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libcrypt1_1%3a4.4.38-1_s390x.deb 520s D: 91 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 94 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/base-files_13.5ubuntu3_s390x.deb 520s D: 95 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 98 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libtinfo6_6.5+20250125-2_s390x.deb 520s D: 99 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 102 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/debianutils_5.21_s390x.deb 520s D: 103 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 106 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/bash_5.2.37-1ubuntu1_s390x.deb 520s D: 107 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 110 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libcap2_1%3a2.66-5ubuntu3_s390x.deb 520s D: 111 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 114 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libsystemd0_257.2-3ubuntu1_s390x.deb 520s D: 115 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 118 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/bsdutils_1%3a2.40.2-14ubuntu1_s390x.deb 520s D: 119 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 122 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libacl1_2.3.2-2_s390x.deb 520s D: 123 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 126 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libattr1_1%3a2.5.2-2_s390x.deb 520s D: 127 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 130 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libgmp10_2%3a6.3.0+dfsg-2ubuntu7_s390x.deb 520s D: 131 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 134 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libpcre2-8-0_10.42-4ubuntu3_s390x.deb 520s D: 135 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 138 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libselinux1_3.7-3ubuntu2_s390x.deb 520s D: 139 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 142 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libzstd1_1.5.6+dfsg-2_s390x.deb 520s D: 143 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 146 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/zlib1g_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb 520s D: 147 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 150 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libssl3t64_3.4.0-1ubuntu2_s390x.deb 520s D: 151 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 154 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/openssl-provider-legacy_3.4.0-1ubuntu2_s390x.deb 520s D: 155 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 158 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/coreutils_9.5-1ubuntu1_s390x.deb 520s D: 159 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 162 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/dash_0.5.12-12ubuntu1_s390x.deb 520s D: 163 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 166 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/diffutils_1%3a3.10-2_s390x.deb 520s D: 167 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 170 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libbz2-1.0_1.0.8-6_s390x.deb 520s D: 171 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 174 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/liblzma5_5.6.3-1_s390x.deb 520s D: 175 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 178 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libmd0_1.1.0-2build2_s390x.deb 520s D: 179 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 182 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/tar_1.35+dfsg-3.1_s390x.deb 520s D: 183 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 520s D: 186 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/dpkg_1.22.11ubuntu4_s390x.deb 520s D: 187 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 191 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/findutils_4.10.0-3_s390x.deb 521s D: 192 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 195 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/grep_3.11-4build1_s390x.deb 521s D: 196 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 199 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/gzip_1.13-1ubuntu2_s390x.deb 521s D: 200 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 203 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/hostname_3.25_s390x.deb 521s D: 204 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 207 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/ncurses-bin_6.5+20250125-2_s390x.deb 521s D: 208 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 211 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/perl-base_5.40.0-8_s390x.deb 521s D: 212 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 215 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/sed_4.9-2build1_s390x.deb 521s D: 216 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 219 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libaudit-common_1%3a4.0.2-2ubuntu1_all.deb 521s D: 220 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 223 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libcap-ng0_0.8.5-4_s390x.deb 521s D: 224 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 227 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libaudit1_1%3a4.0.2-2ubuntu1_s390x.deb 521s D: 228 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 231 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libdb5.3t64_5.3.28+dfsg2-9_s390x.deb 521s D: 232 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 235 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/debconf_1.5.87ubuntu1_all.deb 521s D: 236 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 239 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libpam0g_1.5.3-7ubuntu4_s390x.deb 521s D: 240 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 243 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libpam-modules-bin_1.5.3-7ubuntu4_s390x.deb 521s D: 244 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 247 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libpam-modules_1.5.3-7ubuntu4_s390x.deb 521s D: 248 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 251 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libpam-runtime_1.5.3-7ubuntu4_all.deb 521s D: 252 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 255 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libblkid1_2.40.2-14ubuntu1_s390x.deb 521s D: 256 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 259 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libmount1_2.40.2-14ubuntu1_s390x.deb 521s D: 260 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 263 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libsmartcols1_2.40.2-14ubuntu1_s390x.deb 521s D: 264 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 267 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libudev1_257.2-3ubuntu1_s390x.deb 521s D: 268 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 271 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libuuid1_2.40.2-14ubuntu1_s390x.deb 521s D: 272 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 275 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/util-linux_2.40.2-14ubuntu1_s390x.deb 521s D: 276 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 279 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libdebconfclient0_0.274ubuntu1_s390x.deb 521s D: 280 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 283 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/base-passwd_3.6.6_s390x.deb 521s D: 284 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 287 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/init-system-helpers_1.68_all.deb 521s D: 288 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 291 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/libc-bin_2.40-4ubuntu1_s390x.deb 521s D: 292 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 295 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/ncurses-base_6.5+20250125-2_all.deb 521s D: 296 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s D: 299 3646 running dpkg-deb --fsys-tarfile /tmp/mmdebstrap.6PJyqTOmuA//var/cache/apt/archives/sysvinit-utils_3.14-1ubuntu1_s390x.deb 521s D: 300 3675 running tar -C /tmp/mmdebstrap.6PJyqTOmuA --keep-directory-symlink --extract --file - 521s I: 1 3960 installing essential packages... 521s D: 1 1852 run_progress: exec env --unset=APT_CONFIG --unset=TMPDIR chroot /tmp/mmdebstrap.6PJyqTOmuA dpkg --install --force-depends --status-fd=${FD} /var/cache/apt/archives/gcc-15-base_15-20250213-1ubuntu1_s390x.deb /var/cache/apt/archives/libc6_2.40-4ubuntu1_s390x.deb /var/cache/apt/archives/libgcc-s1_15-20250213-1ubuntu1_s390x.deb /var/cache/apt/archives/mawk_1.3.4.20250131-1_s390x.deb /var/cache/apt/archives/libcrypt1_1%3a4.4.38-1_s390x.deb /var/cache/apt/archives/base-files_13.5ubuntu3_s390x.deb /var/cache/apt/archives/libtinfo6_6.5+20250125-2_s390x.deb /var/cache/apt/archives/debianutils_5.21_s390x.deb /var/cache/apt/archives/bash_5.2.37-1ubuntu1_s390x.deb /var/cache/apt/archives/libcap2_1%3a2.66-5ubuntu3_s390x.deb /var/cache/apt/archives/libsystemd0_257.2-3ubuntu1_s390x.deb /var/cache/apt/archives/bsdutils_1%3a2.40.2-14ubuntu1_s390x.deb /var/cache/apt/archives/libacl1_2.3.2-2_s390x.deb /var/cache/apt/archives/libattr1_1%3a2.5.2-2_s390x.deb /var/cache/apt/archives/libgmp10_2%3a6.3.0+dfsg-2ubuntu7_s390x.deb /var/cache/apt/archives/libpcre2-8-0_10.42-4ubuntu3_s390x.deb /var/cache/apt/archives/libselinux1_3.7-3ubuntu2_s390x.deb /var/cache/apt/archives/libzstd1_1.5.6+dfsg-2_s390x.deb /var/cache/apt/archives/zlib1g_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb /var/cache/apt/archives/libssl3t64_3.4.0-1ubuntu2_s390x.deb /var/cache/apt/archives/openssl-provider-legacy_3.4.0-1ubuntu2_s390x.deb /var/cache/apt/archives/coreutils_9.5-1ubuntu1_s390x.deb /var/cache/apt/archives/dash_0.5.12-12ubuntu1_s390x.deb /var/cache/apt/archives/diffutils_1%3a3.10-2_s390x.deb /var/cache/apt/archives/libbz2-1.0_1.0.8-6_s390x.deb /var/cache/apt/archives/liblzma5_5.6.3-1_s390x.deb /var/cache/apt/archives/libmd0_1.1.0-2build2_s390x.deb /var/cache/apt/archives/tar_1.35+dfsg-3.1_s390x.deb /var/cache/apt/archives/dpkg_1.22.11ubuntu4_s390x.deb /var/cache/apt/archives/findutils_4.10.0-3_s390x.deb /var/cache/apt/archives/grep_3.11-4build1_s390x.deb /var/cache/apt/archives/gzip_1.13-1ubuntu2_s390x.deb /var/cache/apt/archives/hostname_3.25_s390x.deb /var/cache/apt/archives/ncurses-bin_6.5+20250125-2_s390x.deb /var/cache/apt/archives/perl-base_5.40.0-8_s390x.deb /var/cache/apt/archives/sed_4.9-2build1_s390x.deb /var/cache/apt/archives/libaudit-common_1%3a4.0.2-2ubuntu1_all.deb /var/cache/apt/archives/libcap-ng0_0.8.5-4_s390x.deb /var/cache/apt/archives/libaudit1_1%3a4.0.2-2ubuntu1_s390x.deb /var/cache/apt/archives/libdb5.3t64_5.3.28+dfsg2-9_s390x.deb /var/cache/apt/archives/debconf_1.5.87ubuntu1_all.deb /var/cache/apt/archives/libpam0g_1.5.3-7ubuntu4_s390x.deb /var/cache/apt/archives/libpam-modules-bin_1.5.3-7ubuntu4_s390x.deb /var/cache/apt/archives/libpam-modules_1.5.3-7ubuntu4_s390x.deb /var/cache/apt/archives/libpam-runtime_1.5.3-7ubuntu4_all.deb /var/cache/apt/archives/libblkid1_2.40.2-14ubuntu1_s390x.deb /var/cache/apt/archives/libmount1_2.40.2-14ubuntu1_s390x.deb /var/cache/apt/archives/libsmartcols1_2.40.2-14ubuntu1_s390x.deb /var/cache/apt/archives/libudev1_257.2-3ubuntu1_s390x.deb /var/cache/apt/archives/libuuid1_2.40.2-14ubuntu1_s390x.deb /var/cache/apt/archives/util-linux_2.40.2-14ubuntu1_s390x.deb /var/cache/apt/archives/libdebconfclient0_0.274ubuntu1_s390x.deb /var/cache/apt/archives/base-passwd_3.6.6_s390x.deb /var/cache/apt/archives/init-system-helpers_1.68_all.deb /var/cache/apt/archives/libc-bin_2.40-4ubuntu1_s390x.deb /var/cache/apt/archives/ncurses-base_6.5+20250125-2_all.deb /var/cache/apt/archives/sysvinit-utils_3.14-1ubuntu1_s390x.deb 521s Selecting previously unselected package gcc-15-base:s390x. 521s (Reading database ... 0 files and directories currently installed.) 521s Preparing to unpack .../gcc-15-base_15-20250213-1ubuntu1_s390x.deb ... 521s Unpacking gcc-15-base:s390x (15-20250213-1ubuntu1) ... 521s Selecting previously unselected package libc6:s390x. 521s Preparing to unpack .../libc6_2.40-4ubuntu1_s390x.deb ... 521s Use of uninitialized value in concatenation (.) or string at /usr/share/perl5/Debconf/Config.pm line 23. 521s Unpacking libc6:s390x (2.40-4ubuntu1) ... 521s Selecting previously unselected package libgcc-s1:s390x. 521s Preparing to unpack .../libgcc-s1_15-20250213-1ubuntu1_s390x.deb ... 521s Unpacking libgcc-s1:s390x (15-20250213-1ubuntu1) ... 521s Selecting previously unselected package mawk. 521s Preparing to unpack .../mawk_1.3.4.20250131-1_s390x.deb ... 521s Unpacking mawk (1.3.4.20250131-1) ... 521s Selecting previously unselected package libcrypt1:s390x. 521s Preparing to unpack .../libcrypt1_1%3a4.4.38-1_s390x.deb ... 521s Unpacking libcrypt1:s390x (1:4.4.38-1) ... 521s Selecting previously unselected package base-files. 521s dpkg: regarding .../base-files_13.5ubuntu3_s390x.deb containing base-files, pre-dependency problem: 521s base-files pre-depends on awk 521s mawk provides awk but is unpacked but not configured. 521s 521s dpkg: warning: ignoring pre-dependency problem! 521s Preparing to unpack .../base-files_13.5ubuntu3_s390x.deb ... 521s Unpacking base-files (13.5ubuntu3) ... 521s Selecting previously unselected package libtinfo6:s390x. 521s Preparing to unpack .../libtinfo6_6.5+20250125-2_s390x.deb ... 521s Unpacking libtinfo6:s390x (6.5+20250125-2) ... 521s Selecting previously unselected package debianutils. 521s dpkg: regarding .../debianutils_5.21_s390x.deb containing debianutils, pre-dependency problem: 521s debianutils pre-depends on libc6 (>= 2.38) 521s libc6:s390x is unpacked, but has never been configured. 521s 521s dpkg: warning: ignoring pre-dependency problem! 521s Preparing to unpack .../debianutils_5.21_s390x.deb ... 521s Unpacking debianutils (5.21) ... 521s Selecting previously unselected package bash. 521s dpkg: regarding .../bash_5.2.37-1ubuntu1_s390x.deb containing bash, pre-dependency problem: 521s bash pre-depends on libc6 (>= 2.38) 521s libc6:s390x is unpacked, but has never been configured. 521s 521s dpkg: warning: ignoring pre-dependency problem! 521s dpkg: regarding .../bash_5.2.37-1ubuntu1_s390x.deb containing bash, pre-dependency problem: 521s bash pre-depends on libtinfo6 (>= 6) 521s libtinfo6:s390x is unpacked, but has never been configured. 521s 521s dpkg: warning: ignoring pre-dependency problem! 521s Preparing to unpack .../bash_5.2.37-1ubuntu1_s390x.deb ... 521s Unpacking bash (5.2.37-1ubuntu1) ... 521s Selecting previously unselected package libcap2:s390x. 521s Preparing to unpack .../libcap2_1%3a2.66-5ubuntu3_s390x.deb ... 521s Unpacking libcap2:s390x (1:2.66-5ubuntu3) ... 521s Selecting previously unselected package libsystemd0:s390x. 521s Preparing to unpack .../libsystemd0_257.2-3ubuntu1_s390x.deb ... 521s Unpacking libsystemd0:s390x (257.2-3ubuntu1) ... 521s Selecting previously unselected package bsdutils. 521s dpkg: regarding .../bsdutils_1%3a2.40.2-14ubuntu1_s390x.deb containing bsdutils, pre-dependency problem: 521s bsdutils pre-depends on libc6 (>= 2.38) 521s libc6:s390x is unpacked, but has never been configured. 521s 521s dpkg: warning: ignoring pre-dependency problem! 521s dpkg: regarding .../bsdutils_1%3a2.40.2-14ubuntu1_s390x.deb containing bsdutils, pre-dependency problem: 521s bsdutils pre-depends on libsystemd0 (>= 254) 521s libsystemd0:s390x is unpacked, but has never been configured. 521s 521s dpkg: warning: ignoring pre-dependency problem! 521s Preparing to unpack .../bsdutils_1%3a2.40.2-14ubuntu1_s390x.deb ... 521s Unpacking bsdutils (1:2.40.2-14ubuntu1) ... 521s Selecting previously unselected package libacl1:s390x. 521s Preparing to unpack .../libacl1_2.3.2-2_s390x.deb ... 521s Unpacking libacl1:s390x (2.3.2-2) ... 521s Selecting previously unselected package libattr1:s390x. 521s Preparing to unpack .../libattr1_1%3a2.5.2-2_s390x.deb ... 521s Unpacking libattr1:s390x (1:2.5.2-2) ... 521s Selecting previously unselected package libgmp10:s390x. 521s Preparing to unpack .../libgmp10_2%3a6.3.0+dfsg-2ubuntu7_s390x.deb ... 521s Unpacking libgmp10:s390x (2:6.3.0+dfsg-2ubuntu7) ... 521s Selecting previously unselected package libpcre2-8-0:s390x. 521s Preparing to unpack .../libpcre2-8-0_10.42-4ubuntu3_s390x.deb ... 521s Unpacking libpcre2-8-0:s390x (10.42-4ubuntu3) ... 521s Selecting previously unselected package libselinux1:s390x. 521s Preparing to unpack .../libselinux1_3.7-3ubuntu2_s390x.deb ... 521s Unpacking libselinux1:s390x (3.7-3ubuntu2) ... 521s Selecting previously unselected package libzstd1:s390x. 521s Preparing to unpack .../libzstd1_1.5.6+dfsg-2_s390x.deb ... 521s Unpacking libzstd1:s390x (1.5.6+dfsg-2) ... 521s Selecting previously unselected package zlib1g:s390x. 521s Preparing to unpack .../zlib1g_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 521s Unpacking zlib1g:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 521s Selecting previously unselected package libssl3t64:s390x. 521s Preparing to unpack .../libssl3t64_3.4.0-1ubuntu2_s390x.deb ... 521s Unpacking libssl3t64:s390x (3.4.0-1ubuntu2) ... 522s Selecting previously unselected package openssl-provider-legacy. 522s Preparing to unpack .../openssl-provider-legacy_3.4.0-1ubuntu2_s390x.deb ... 522s Unpacking openssl-provider-legacy (3.4.0-1ubuntu2) ... 522s Selecting previously unselected package coreutils. 522s dpkg: regarding .../coreutils_9.5-1ubuntu1_s390x.deb containing coreutils, pre-dependency problem: 522s coreutils pre-depends on libacl1 (>= 2.2.23) 522s libacl1:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../coreutils_9.5-1ubuntu1_s390x.deb containing coreutils, pre-dependency problem: 522s coreutils pre-depends on libattr1 (>= 1:2.4.48) 522s libattr1:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../coreutils_9.5-1ubuntu1_s390x.deb containing coreutils, pre-dependency problem: 522s coreutils pre-depends on libc6 (>= 2.38) 522s libc6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../coreutils_9.5-1ubuntu1_s390x.deb containing coreutils, pre-dependency problem: 522s coreutils pre-depends on libgmp10 (>= 2:6.3.0+dfsg) 522s libgmp10:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../coreutils_9.5-1ubuntu1_s390x.deb containing coreutils, pre-dependency problem: 522s coreutils pre-depends on libselinux1 (>= 3.1~) 522s libselinux1:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../coreutils_9.5-1ubuntu1_s390x.deb containing coreutils, pre-dependency problem: 522s coreutils pre-depends on libssl3t64 (>= 3.0.0) 522s libssl3t64:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s Preparing to unpack .../coreutils_9.5-1ubuntu1_s390x.deb ... 522s Unpacking coreutils (9.5-1ubuntu1) ... 522s Selecting previously unselected package dash. 522s dpkg: regarding .../dash_0.5.12-12ubuntu1_s390x.deb containing dash, pre-dependency problem: 522s dash pre-depends on libc6 (>= 2.38) 522s libc6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 522s Unpacking dash (0.5.12-12ubuntu1) ... 522s Selecting previously unselected package diffutils. 522s dpkg: regarding .../diffutils_1%3a3.10-2_s390x.deb containing diffutils, pre-dependency problem: 522s diffutils pre-depends on libc6 (>= 2.38) 522s libc6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s Preparing to unpack .../diffutils_1%3a3.10-2_s390x.deb ... 522s Unpacking diffutils (1:3.10-2) ... 522s Selecting previously unselected package libbz2-1.0:s390x. 522s Preparing to unpack .../libbz2-1.0_1.0.8-6_s390x.deb ... 522s Unpacking libbz2-1.0:s390x (1.0.8-6) ... 522s Selecting previously unselected package liblzma5:s390x. 522s Preparing to unpack .../liblzma5_5.6.3-1_s390x.deb ... 522s Unpacking liblzma5:s390x (5.6.3-1) ... 522s Selecting previously unselected package libmd0:s390x. 522s Preparing to unpack .../libmd0_1.1.0-2build2_s390x.deb ... 522s Unpacking libmd0:s390x (1.1.0-2build2) ... 522s Selecting previously unselected package tar. 522s dpkg: regarding .../tar_1.35+dfsg-3.1_s390x.deb containing tar, pre-dependency problem: 522s tar pre-depends on libacl1 (>= 2.2.23) 522s libacl1:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../tar_1.35+dfsg-3.1_s390x.deb containing tar, pre-dependency problem: 522s tar pre-depends on libc6 (>= 2.38) 522s libc6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../tar_1.35+dfsg-3.1_s390x.deb containing tar, pre-dependency problem: 522s tar pre-depends on libselinux1 (>= 3.1~) 522s libselinux1:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s Preparing to unpack .../tar_1.35+dfsg-3.1_s390x.deb ... 522s Unpacking tar (1.35+dfsg-3.1) ... 522s Selecting previously unselected package dpkg. 522s dpkg: regarding .../dpkg_1.22.11ubuntu4_s390x.deb containing dpkg, pre-dependency problem: 522s dpkg pre-depends on libbz2-1.0 522s libbz2-1.0:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../dpkg_1.22.11ubuntu4_s390x.deb containing dpkg, pre-dependency problem: 522s dpkg pre-depends on libc6 (>= 2.38) 522s libc6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../dpkg_1.22.11ubuntu4_s390x.deb containing dpkg, pre-dependency problem: 522s dpkg pre-depends on liblzma5 (>= 5.4.0) 522s liblzma5:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../dpkg_1.22.11ubuntu4_s390x.deb containing dpkg, pre-dependency problem: 522s dpkg pre-depends on libmd0 (>= 0.0.0) 522s libmd0:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../dpkg_1.22.11ubuntu4_s390x.deb containing dpkg, pre-dependency problem: 522s dpkg pre-depends on libselinux1 (>= 3.1~) 522s libselinux1:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../dpkg_1.22.11ubuntu4_s390x.deb containing dpkg, pre-dependency problem: 522s dpkg pre-depends on libzstd1 (>= 1.5.5) 522s libzstd1:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../dpkg_1.22.11ubuntu4_s390x.deb containing dpkg, pre-dependency problem: 522s dpkg pre-depends on zlib1g (>= 1:1.1.4) 522s zlib1g:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s Preparing to unpack .../dpkg_1.22.11ubuntu4_s390x.deb ... 522s Unpacking dpkg (1.22.11ubuntu4) ... 522s Selecting previously unselected package findutils. 522s dpkg: regarding .../findutils_4.10.0-3_s390x.deb containing findutils, pre-dependency problem: 522s findutils pre-depends on libc6 (>= 2.38) 522s libc6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../findutils_4.10.0-3_s390x.deb containing findutils, pre-dependency problem: 522s findutils pre-depends on libselinux1 (>= 3.1~) 522s libselinux1:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s Preparing to unpack .../findutils_4.10.0-3_s390x.deb ... 522s Unpacking findutils (4.10.0-3) ... 522s Selecting previously unselected package grep. 522s dpkg: regarding .../grep_3.11-4build1_s390x.deb containing grep, pre-dependency problem: 522s grep pre-depends on libc6 (>= 2.38) 522s libc6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../grep_3.11-4build1_s390x.deb containing grep, pre-dependency problem: 522s grep pre-depends on libpcre2-8-0 (>= 10.32) 522s libpcre2-8-0:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s Preparing to unpack .../grep_3.11-4build1_s390x.deb ... 522s Unpacking grep (3.11-4build1) ... 522s Selecting previously unselected package gzip. 522s dpkg: regarding .../gzip_1.13-1ubuntu2_s390x.deb containing gzip, pre-dependency problem: 522s gzip pre-depends on libc6 (>= 2.38) 522s libc6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s Preparing to unpack .../gzip_1.13-1ubuntu2_s390x.deb ... 522s Unpacking gzip (1.13-1ubuntu2) ... 522s Selecting previously unselected package hostname. 522s dpkg: regarding .../hostname_3.25_s390x.deb containing hostname, pre-dependency problem: 522s hostname pre-depends on libc6 (>= 2.34) 522s libc6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s Preparing to unpack .../hostname_3.25_s390x.deb ... 522s Unpacking hostname (3.25) ... 522s Selecting previously unselected package ncurses-bin. 522s dpkg: regarding .../ncurses-bin_6.5+20250125-2_s390x.deb containing ncurses-bin, pre-dependency problem: 522s ncurses-bin pre-depends on libc6 (>= 2.34) 522s libc6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../ncurses-bin_6.5+20250125-2_s390x.deb containing ncurses-bin, pre-dependency problem: 522s ncurses-bin pre-depends on libtinfo6 (>= 6.4+20230603) 522s libtinfo6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s Preparing to unpack .../ncurses-bin_6.5+20250125-2_s390x.deb ... 522s Unpacking ncurses-bin (6.5+20250125-2) ... 522s Selecting previously unselected package perl-base. 522s dpkg: regarding .../perl-base_5.40.0-8_s390x.deb containing perl-base, pre-dependency problem: 522s perl-base pre-depends on libc6 (>= 2.38) 522s libc6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../perl-base_5.40.0-8_s390x.deb containing perl-base, pre-dependency problem: 522s perl-base pre-depends on libcrypt1 (>= 1:4.1.0) 522s libcrypt1:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s Preparing to unpack .../perl-base_5.40.0-8_s390x.deb ... 522s Unpacking perl-base (5.40.0-8) ... 522s Selecting previously unselected package sed. 522s dpkg: regarding .../sed_4.9-2build1_s390x.deb containing sed, pre-dependency problem: 522s sed pre-depends on libacl1 (>= 2.2.23) 522s libacl1:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../sed_4.9-2build1_s390x.deb containing sed, pre-dependency problem: 522s sed pre-depends on libc6 (>= 2.38) 522s libc6:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s dpkg: regarding .../sed_4.9-2build1_s390x.deb containing sed, pre-dependency problem: 522s sed pre-depends on libselinux1 (>= 3.1~) 522s libselinux1:s390x is unpacked, but has never been configured. 522s 522s dpkg: warning: ignoring pre-dependency problem! 522s Preparing to unpack .../sed_4.9-2build1_s390x.deb ... 522s Unpacking sed (4.9-2build1) ... 522s Selecting previously unselected package libaudit-common. 522s Preparing to unpack .../libaudit-common_1%3a4.0.2-2ubuntu1_all.deb ... 522s Unpacking libaudit-common (1:4.0.2-2ubuntu1) ... 522s Selecting previously unselected package libcap-ng0:s390x. 522s Preparing to unpack .../libcap-ng0_0.8.5-4_s390x.deb ... 522s Unpacking libcap-ng0:s390x (0.8.5-4) ... 522s Selecting previously unselected package libaudit1:s390x. 522s Preparing to unpack .../libaudit1_1%3a4.0.2-2ubuntu1_s390x.deb ... 522s Unpacking libaudit1:s390x (1:4.0.2-2ubuntu1) ... 522s Selecting previously unselected package libdb5.3t64:s390x. 522s Preparing to unpack .../libdb5.3t64_5.3.28+dfsg2-9_s390x.deb ... 522s Unpacking libdb5.3t64:s390x (5.3.28+dfsg2-9) ... 523s Selecting previously unselected package debconf. 523s Preparing to unpack .../debconf_1.5.87ubuntu1_all.deb ... 523s Unpacking debconf (1.5.87ubuntu1) ... 523s Selecting previously unselected package libpam0g:s390x. 523s Preparing to unpack .../libpam0g_1.5.3-7ubuntu4_s390x.deb ... 523s Unpacking libpam0g:s390x (1.5.3-7ubuntu4) ... 523s Selecting previously unselected package libpam-modules-bin. 523s Preparing to unpack .../libpam-modules-bin_1.5.3-7ubuntu4_s390x.deb ... 523s Unpacking libpam-modules-bin (1.5.3-7ubuntu4) ... 523s Selecting previously unselected package libpam-modules:s390x. 523s dpkg: regarding .../libpam-modules_1.5.3-7ubuntu4_s390x.deb containing libpam-modules:s390x, pre-dependency problem: 523s libpam-modules pre-depends on libaudit1 (>= 1:2.2.1) 523s libaudit1:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../libpam-modules_1.5.3-7ubuntu4_s390x.deb containing libpam-modules:s390x, pre-dependency problem: 523s libpam-modules pre-depends on libc6 (>= 2.38) 523s libc6:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../libpam-modules_1.5.3-7ubuntu4_s390x.deb containing libpam-modules:s390x, pre-dependency problem: 523s libpam-modules pre-depends on libcrypt1 (>= 1:4.3.0) 523s libcrypt1:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../libpam-modules_1.5.3-7ubuntu4_s390x.deb containing libpam-modules:s390x, pre-dependency problem: 523s libpam-modules pre-depends on libdb5.3t64 523s libdb5.3t64:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../libpam-modules_1.5.3-7ubuntu4_s390x.deb containing libpam-modules:s390x, pre-dependency problem: 523s libpam-modules pre-depends on libpam0g (>= 1.4.1) 523s libpam0g:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../libpam-modules_1.5.3-7ubuntu4_s390x.deb containing libpam-modules:s390x, pre-dependency problem: 523s libpam-modules pre-depends on libselinux1 (>= 3.1~) 523s libselinux1:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../libpam-modules_1.5.3-7ubuntu4_s390x.deb containing libpam-modules:s390x, pre-dependency problem: 523s libpam-modules pre-depends on libsystemd0 523s libsystemd0:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../libpam-modules_1.5.3-7ubuntu4_s390x.deb containing libpam-modules:s390x, pre-dependency problem: 523s libpam-modules pre-depends on debconf (>= 0.5) | debconf-2.0 523s debconf is unpacked, but has never been configured. 523s debconf provides debconf-2.0 but is unpacked but not configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../libpam-modules_1.5.3-7ubuntu4_s390x.deb containing libpam-modules:s390x, pre-dependency problem: 523s libpam-modules pre-depends on libpam-modules-bin (= 1.5.3-7ubuntu4) 523s libpam-modules-bin is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s Preparing to unpack .../libpam-modules_1.5.3-7ubuntu4_s390x.deb ... 523s Use of uninitialized value in concatenation (.) or string at /usr/share/perl5/Debconf/Config.pm line 23. 523s Unpacking libpam-modules:s390x (1.5.3-7ubuntu4) ... 523s Selecting previously unselected package libpam-runtime. 523s Preparing to unpack .../libpam-runtime_1.5.3-7ubuntu4_all.deb ... 523s Unpacking libpam-runtime (1.5.3-7ubuntu4) ... 523s Selecting previously unselected package libblkid1:s390x. 523s Preparing to unpack .../libblkid1_2.40.2-14ubuntu1_s390x.deb ... 523s Unpacking libblkid1:s390x (2.40.2-14ubuntu1) ... 523s Selecting previously unselected package libmount1:s390x. 523s Preparing to unpack .../libmount1_2.40.2-14ubuntu1_s390x.deb ... 523s Unpacking libmount1:s390x (2.40.2-14ubuntu1) ... 523s Selecting previously unselected package libsmartcols1:s390x. 523s Preparing to unpack .../libsmartcols1_2.40.2-14ubuntu1_s390x.deb ... 523s Unpacking libsmartcols1:s390x (2.40.2-14ubuntu1) ... 523s Selecting previously unselected package libudev1:s390x. 523s Preparing to unpack .../libudev1_257.2-3ubuntu1_s390x.deb ... 523s Unpacking libudev1:s390x (257.2-3ubuntu1) ... 523s Selecting previously unselected package libuuid1:s390x. 523s Preparing to unpack .../libuuid1_2.40.2-14ubuntu1_s390x.deb ... 523s Unpacking libuuid1:s390x (2.40.2-14ubuntu1) ... 523s Selecting previously unselected package util-linux. 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libpam-modules 523s libpam-modules:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libpam-runtime 523s libpam-runtime is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libblkid1 (= 2.40.2-14ubuntu1) 523s libblkid1:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libc6 (>= 2.38) 523s libc6:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libcap-ng0 (>= 0.7.9) 523s libcap-ng0:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libcrypt1 (>= 1:4.1.0) 523s libcrypt1:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libmount1 (= 2.40.2-14ubuntu1) 523s libmount1:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libpam0g (>= 0.99.7.1) 523s libpam0g:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libselinux1 (>= 3.1~) 523s libselinux1:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libsmartcols1 (= 2.40.2-14ubuntu1) 523s libsmartcols1:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libsystemd0 523s libsystemd0:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libtinfo6 (>= 6) 523s libtinfo6:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libudev1 (>= 183) 523s libudev1:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s dpkg: regarding .../util-linux_2.40.2-14ubuntu1_s390x.deb containing util-linux, pre-dependency problem: 523s util-linux pre-depends on libuuid1 (= 2.40.2-14ubuntu1) 523s libuuid1:s390x is unpacked, but has never been configured. 523s 523s dpkg: warning: ignoring pre-dependency problem! 523s Preparing to unpack .../util-linux_2.40.2-14ubuntu1_s390x.deb ... 523s Unpacking util-linux (2.40.2-14ubuntu1) ... 523s Selecting previously unselected package libdebconfclient0:s390x. 523s Preparing to unpack .../libdebconfclient0_0.274ubuntu1_s390x.deb ... 523s Unpacking libdebconfclient0:s390x (0.274ubuntu1) ... 523s Selecting previously unselected package base-passwd. 523s Preparing to unpack .../base-passwd_3.6.6_s390x.deb ... 523s Unpacking base-passwd (3.6.6) ... 523s Selecting previously unselected package init-system-helpers. 523s Preparing to unpack .../init-system-helpers_1.68_all.deb ... 523s Unpacking init-system-helpers (1.68) ... 523s Selecting previously unselected package libc-bin. 523s Preparing to unpack .../libc-bin_2.40-4ubuntu1_s390x.deb ... 523s Unpacking libc-bin (2.40-4ubuntu1) ... 523s Selecting previously unselected package ncurses-base. 523s Preparing to unpack .../ncurses-base_6.5+20250125-2_all.deb ... 523s Unpacking ncurses-base (6.5+20250125-2) ... 523s Selecting previously unselected package sysvinit-utils. 523s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 523s Unpacking sysvinit-utils (3.14-1ubuntu1) ... 523s Setting up gcc-15-base:s390x (15-20250213-1ubuntu1) ... 523s Setting up libaudit-common (1:4.0.2-2ubuntu1) ... 523s Setting up debconf (1.5.87ubuntu1) ... 523s Setting up init-system-helpers (1.68) ... 523s Setting up ncurses-base (6.5+20250125-2) ... 523s Setting up libgcc-s1:s390x (15-20250213-1ubuntu1) ... 523s Setting up libc6:s390x (2.40-4ubuntu1) ... 523s Setting up mawk (1.3.4.20250131-1) ... 523s update-alternatives: using /usr/bin/mawk to provide /usr/bin/awk (awk) in auto mode 523s Setting up libcrypt1:s390x (1:4.4.38-1) ... 523s Setting up base-files (13.5ubuntu3) ... 523s Setting up libtinfo6:s390x (6.5+20250125-2) ... 523s Setting up debianutils (5.21) ... 523s update-alternatives: using /usr/bin/which.debianutils to provide /usr/bin/which (which) in auto mode 523s Setting up bash (5.2.37-1ubuntu1) ... 523s update-alternatives: using /usr/share/man/man7/bash-builtins.7.gz to provide /usr/share/man/man7/builtins.7.gz (builtins.7.gz) in auto mode 523s Setting up libcap2:s390x (1:2.66-5ubuntu3) ... 523s Setting up libsystemd0:s390x (257.2-3ubuntu1) ... 523s Setting up bsdutils (1:2.40.2-14ubuntu1) ... 523s Setting up libacl1:s390x (2.3.2-2) ... 523s Setting up libattr1:s390x (1:2.5.2-2) ... 523s Setting up libgmp10:s390x (2:6.3.0+dfsg-2ubuntu7) ... 524s Setting up libpcre2-8-0:s390x (10.42-4ubuntu3) ... 524s Setting up libselinux1:s390x (3.7-3ubuntu2) ... 524s Setting up libzstd1:s390x (1.5.6+dfsg-2) ... 524s Setting up zlib1g:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 524s Setting up openssl-provider-legacy (3.4.0-1ubuntu2) ... 524s Setting up dash (0.5.12-12ubuntu1) ... 524s Setting up diffutils (1:3.10-2) ... 524s Setting up libbz2-1.0:s390x (1.0.8-6) ... 524s Setting up liblzma5:s390x (5.6.3-1) ... 524s Setting up libmd0:s390x (1.1.0-2build2) ... 524s Setting up tar (1.35+dfsg-3.1) ... 524s update-alternatives: using /usr/sbin/rmt-tar to provide /usr/sbin/rmt (rmt) in auto mode 524s Setting up dpkg (1.22.11ubuntu4) ... 524s Setting up findutils (4.10.0-3) ... 524s Setting up grep (3.11-4build1) ... 524s Setting up gzip (1.13-1ubuntu2) ... 524s Setting up hostname (3.25) ... 524s Setting up ncurses-bin (6.5+20250125-2) ... 524s Setting up perl-base (5.40.0-8) ... 524s Setting up sed (4.9-2build1) ... 524s Setting up libcap-ng0:s390x (0.8.5-4) ... 524s Setting up libaudit1:s390x (1:4.0.2-2ubuntu1) ... 524s Setting up libdb5.3t64:s390x (5.3.28+dfsg2-9) ... 524s Setting up libpam0g:s390x (1.5.3-7ubuntu4) ... 524s Setting up libpam-modules-bin (1.5.3-7ubuntu4) ... 524s Setting up libpam-modules:s390x (1.5.3-7ubuntu4) ... 524s Setting up libpam-runtime (1.5.3-7ubuntu4) ... 524s Setting up libblkid1:s390x (2.40.2-14ubuntu1) ... 524s Setting up libmount1:s390x (2.40.2-14ubuntu1) ... 524s Setting up libsmartcols1:s390x (2.40.2-14ubuntu1) ... 524s Setting up libudev1:s390x (257.2-3ubuntu1) ... 524s Setting up libuuid1:s390x (2.40.2-14ubuntu1) ... 524s Setting up util-linux (2.40.2-14ubuntu1) ... 524s update-alternatives: using /bin/more to provide /usr/bin/pager (pager) in auto mode 524s Setting up libdebconfclient0:s390x (0.274ubuntu1) ... 524s Setting up base-passwd (3.6.6) ... 524s Setting up libc-bin (2.40-4ubuntu1) ... 524s Setting up sysvinit-utils (3.14-1ubuntu1) ... 524s Setting up libssl3t64:s390x (3.4.0-1ubuntu2) ... 524s Setting up coreutils (9.5-1ubuntu1) ... 524s Processing triggers for libc-bin (2.40-4ubuntu1) ... 524s I: 1 4079 installing remaining packages inside the chroot... 524s D: 1 1852 run_progress: exec apt-get -o Dir::Bin::dpkg=env -o DPkg::Options::=--unset=TMPDIR -o DPkg::Options::=dpkg --yes install -oDebug::pkgProblemResolver=true -oDebug::pkgDepCache::Marker=1 -oDebug::pkgDepCache::AutoInstall=1 -oAPT::Status-Fd=${FD} -oDpkg::Use-Pty=false ca-certificates apt 524s Reading package lists... 524s Building dependency tree... 524s MarkInstall ca-certificates:s390x < none -> 20241223 @un puN Ib > FU=1 524s Installing openssl:s390x as Depends of ca-certificates:s390x 524s MarkInstall openssl:s390x < none -> 3.4.0-1ubuntu2 @un puN > FU=0 524s MarkInstall libc6:s390x < 2.40-4ubuntu1 @ii pmK > FU=0 524s MarkInstall libgcc-s1:s390x < 15-20250213-1ubuntu1 @ii pmK > FU=0 524s MarkInstall gcc-15-base:s390x < 15-20250213-1ubuntu1 @ii pmK > FU=0 524s MarkInstall libssl3t64:s390x < 3.4.0-1ubuntu2 @ii pmK > FU=0 524s MarkInstall libzstd1:s390x < 1.5.6+dfsg-2 @ii pmK > FU=0 524s MarkInstall zlib1g:s390x < 1:1.3.dfsg+really1.3.1-1ubuntu1 @ii pmK > FU=0 524s MarkInstall openssl-provider-legacy:s390x < 3.4.0-1ubuntu2 @ii pmK > FU=0 524s MarkInstall apt:s390x < none -> 2.9.30 @un pumN Ib > FU=1 524s Installing gpgv:s390x as Depends of apt:s390x 524s MarkInstall gpgv:s390x < none -> 2.4.4-2ubuntu22 @un uN Ib > FU=0 524s Installing libassuan9:s390x as Depends of gpgv:s390x 524s MarkInstall libassuan9:s390x < none -> 3.0.1-2 @un uN Ib > FU=0 524s Installing libgpg-error0:s390x as Depends of libassuan9:s390x 524s MarkInstall libgpg-error0:s390x < none -> 1.51-3 @un uN > FU=0 524s Installing libgcrypt20:s390x as Depends of gpgv:s390x 524s MarkInstall libgcrypt20:s390x < none -> 1.11.0-6ubuntu1 @un umN > FU=0 524s Installing libnpth0t64:s390x as Depends of gpgv:s390x 524s MarkInstall libnpth0t64:s390x < none -> 1.8-2 @un uN > FU=0 524s Installing libapt-pkg7.0:s390x as Depends of apt:s390x 524s MarkInstall libapt-pkg7.0:s390x < none -> 2.9.30 @un puN Ib > FU=0 524s MarkInstall libbz2-1.0:s390x < 1.0.8-6 @ii pmK > FU=0 524s Installing liblz4-1:s390x as Depends of libapt-pkg7.0:s390x 524s MarkInstall liblz4-1:s390x < none -> 1.10.0-3 @un pumN Ib > FU=0 524s Installing libxxhash0:s390x as Depends of liblz4-1:s390x 524s MarkInstall libxxhash0:s390x < none -> 0.8.3-2 @un puN > FU=0 524s MarkInstall liblzma5:s390x < 5.6.3-1 @ii pmK > FU=0 524s Installing libstdc++6:s390x as Depends of libapt-pkg7.0:s390x 524s MarkInstall libstdc++6:s390x < none -> 15-20250213-1ubuntu1 @un puN > FU=0 524s MarkInstall libsystemd0:s390x < 257.2-3ubuntu1 @ii pmK > FU=0 524s MarkInstall libcap2:s390x < 1:2.66-5ubuntu3 @ii pmK > FU=0 524s MarkInstall libudev1:s390x < 257.2-3ubuntu1 @ii pmK > FU=0 524s Installing ubuntu-keyring:s390x as Depends of apt:s390x 524s MarkInstall ubuntu-keyring:s390x < none -> 2023.11.28.1 @un puN > FU=0 524s Installing libseccomp2:s390x as Depends of apt:s390x 524s MarkInstall libseccomp2:s390x < none -> 2.5.5-1ubuntu5 @un puN > FU=0 524s Starting pkgProblemResolver with broken count: 0 525s Starting 2 pkgProblemResolver with broken count: 0 525s Done 525s The following additional packages will be installed: 525s gpgv libapt-pkg7.0 libassuan9 libgcrypt20 libgpg-error0 liblz4-1 libnpth0t64 525s libseccomp2 libstdc++6 libxxhash0 openssl ubuntu-keyring 525s Suggested packages: 525s apt-doc aptitude | synaptic | wajig dpkg-dev gnupg | gnupg2 | gnupg1 525s powermgmt-base gnupg rng-tools 525s Recommended packages: 525s libgpg-error-l10n 525s The following NEW packages will be installed: 525s apt ca-certificates gpgv libapt-pkg7.0 libassuan9 libgcrypt20 libgpg-error0 525s liblz4-1 libnpth0t64 libseccomp2 libstdc++6 libxxhash0 openssl 525s ubuntu-keyring 525s 0 upgraded, 14 newly installed, 0 to remove and 0 not upgraded. 525s Need to get 5808 kB of archives. 525s After this operation, 16.7 MB of additional disk space will be used. 525s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libgpg-error0 s390x 1.51-3 [80.2 kB] 525s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libassuan9 s390x 3.0.1-2 [41.3 kB] 525s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libgcrypt20 s390x 1.11.0-6ubuntu1 [579 kB] 526s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnpth0t64 s390x 1.8-2 [8690 B] 526s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x gpgv s390x 2.4.4-2ubuntu22 [164 kB] 526s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libxxhash0 s390x 0.8.3-2 [24.2 kB] 526s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x liblz4-1 s390x 1.10.0-3 [82.0 kB] 526s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 15-20250213-1ubuntu1 [899 kB] 527s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libapt-pkg7.0 s390x 2.9.30 [1103 kB] 527s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x ubuntu-keyring all 2023.11.28.1 [11.1 kB] 527s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libseccomp2 s390x 2.5.5-1ubuntu5 [52.1 kB] 527s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x apt s390x 2.9.30 [1418 kB] 528s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x openssl s390x 3.4.0-1ubuntu2 [1181 kB] 528s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x ca-certificates all 20241223 [165 kB] 528s Fetched 5808 kB in 3s (1863 kB/s) 528s Chrooting into /tmp/mmdebstrap.6PJyqTOmuA/ 528s Selecting previously unselected package libgpg-error0:s390x. 528s (Reading database ... 3060 files and directories currently installed.) 528s Preparing to unpack .../00-libgpg-error0_1.51-3_s390x.deb ... 528s Unpacking libgpg-error0:s390x (1.51-3) ... 528s Selecting previously unselected package libassuan9:s390x. 528s Preparing to unpack .../01-libassuan9_3.0.1-2_s390x.deb ... 528s Unpacking libassuan9:s390x (3.0.1-2) ... 528s Selecting previously unselected package libgcrypt20:s390x. 528s Preparing to unpack .../02-libgcrypt20_1.11.0-6ubuntu1_s390x.deb ... 528s Unpacking libgcrypt20:s390x (1.11.0-6ubuntu1) ... 528s Selecting previously unselected package libnpth0t64:s390x. 528s Preparing to unpack .../03-libnpth0t64_1.8-2_s390x.deb ... 528s Unpacking libnpth0t64:s390x (1.8-2) ... 528s Selecting previously unselected package gpgv. 528s Preparing to unpack .../04-gpgv_2.4.4-2ubuntu22_s390x.deb ... 528s Unpacking gpgv (2.4.4-2ubuntu22) ... 528s Selecting previously unselected package libxxhash0:s390x. 528s Preparing to unpack .../05-libxxhash0_0.8.3-2_s390x.deb ... 528s Unpacking libxxhash0:s390x (0.8.3-2) ... 528s Selecting previously unselected package liblz4-1:s390x. 528s Preparing to unpack .../06-liblz4-1_1.10.0-3_s390x.deb ... 528s Unpacking liblz4-1:s390x (1.10.0-3) ... 528s Selecting previously unselected package libstdc++6:s390x. 528s Preparing to unpack .../07-libstdc++6_15-20250213-1ubuntu1_s390x.deb ... 528s Unpacking libstdc++6:s390x (15-20250213-1ubuntu1) ... 528s Selecting previously unselected package libapt-pkg7.0:s390x. 528s Preparing to unpack .../08-libapt-pkg7.0_2.9.30_s390x.deb ... 528s Unpacking libapt-pkg7.0:s390x (2.9.30) ... 528s Selecting previously unselected package ubuntu-keyring. 528s Preparing to unpack .../09-ubuntu-keyring_2023.11.28.1_all.deb ... 528s Unpacking ubuntu-keyring (2023.11.28.1) ... 528s Selecting previously unselected package libseccomp2:s390x. 528s Preparing to unpack .../10-libseccomp2_2.5.5-1ubuntu5_s390x.deb ... 528s Unpacking libseccomp2:s390x (2.5.5-1ubuntu5) ... 528s Selecting previously unselected package apt. 528s Preparing to unpack .../11-apt_2.9.30_s390x.deb ... 528s Unpacking apt (2.9.30) ... 528s Selecting previously unselected package openssl. 528s Preparing to unpack .../12-openssl_3.4.0-1ubuntu2_s390x.deb ... 528s Unpacking openssl (3.4.0-1ubuntu2) ... 528s Selecting previously unselected package ca-certificates. 528s Preparing to unpack .../13-ca-certificates_20241223_all.deb ... 528s Unpacking ca-certificates (20241223) ... 528s Chrooting into /tmp/mmdebstrap.6PJyqTOmuA/ 528s Setting up libnpth0t64:s390x (1.8-2) ... 528s Setting up libgpg-error0:s390x (1.51-3) ... 528s Setting up libgcrypt20:s390x (1.11.0-6ubuntu1) ... 528s Setting up ubuntu-keyring (2023.11.28.1) ... 528s Setting up libseccomp2:s390x (2.5.5-1ubuntu5) ... 528s Setting up libxxhash0:s390x (0.8.3-2) ... 528s Setting up libassuan9:s390x (3.0.1-2) ... 528s Setting up openssl (3.4.0-1ubuntu2) ... 528s Setting up libstdc++6:s390x (15-20250213-1ubuntu1) ... 528s Setting up liblz4-1:s390x (1.10.0-3) ... 528s Setting up ca-certificates (20241223) ... 529s Updating certificates in /etc/ssl/certs... 529s 152 added, 0 removed; done. 529s Setting up gpgv (2.4.4-2ubuntu22) ... 529s Setting up libapt-pkg7.0:s390x (2.9.30) ... 529s Setting up apt (2.9.30) ... 529s Processing triggers for libc-bin (2.40-4ubuntu1) ... 529s Processing triggers for ca-certificates (20241223) ... 529s Updating certificates in /etc/ssl/certs... 530s 0 added, 0 removed; done. 530s Running hooks in /etc/ca-certificates/update.d... 530s done. 530s I: 1 2811 running --customize-hook directly: /usr/share/mmdebstrap/hooks/copy-host-apt-sources-and-preferences/customize00.pl /tmp/mmdebstrap.6PJyqTOmuA 530s I: 1 2811 running --customize-hook directly: /usr/share/mmdebstrap/hooks/file-mirror-automount/customize00.sh /tmp/mmdebstrap.6PJyqTOmuA 530s + rootdir=/tmp/mmdebstrap.6PJyqTOmuA 530s + [ ! -e /tmp/mmdebstrap.6PJyqTOmuA/run/mmdebstrap/file-mirror-automount ] 530s + exit 0 530s I: 1 4126 skipping cleanup/apt/lists as requested 530s I: 1 4144 cleaning apt cache... 530s D: 1 1852 run_progress: exec apt-get clean -oDebug::pkgProblemResolver=true -oDebug::pkgDepCache::Marker=1 -oDebug::pkgDepCache::AutoInstall=1 -oAPT::Status-Fd=${FD} -oDpkg::Use-Pty=false 530s I: 1 7191 creating tarball... 530s D: 2283 4758 listener: finished reading command 530s D: 2283 4765 listener: received message: adios 530s D: 2238 7305 finish to listen for hooks 531s I: 1 7239 done 531s I: 2238 7490 removing tempdir /tmp/mmdebstrap.6PJyqTOmuA... 531s I: 2238 7543 success in 19.3662 seconds 531s + env --chdir=/tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg-1.0/ dpkg-buildpackage --sign-keyfile=/tmp/autopkgtest.dghVVw/autopkgtest_tmp/key.asc --build=full 531s dpkg-buildpackage: info: source package test-pkg 531s dpkg-buildpackage: info: source version 1.0 531s dpkg-buildpackage: info: source distribution unstable 531s dpkg-buildpackage: info: source changed by sbuild fake uploader 531s dpkg-source --before-build . 531s dpkg-buildpackage: info: host architecture s390x 531s fakeroot debian/rules clean 531s rm -rf debian/files debian/tmp 531s dpkg-source -b . 531s dpkg-source: info: using source format '3.0 (native)' 531s dpkg-source: info: building test-pkg in test-pkg_1.0.tar.xz 531s debian/rules build 531s dpkg-source: info: building test-pkg in test-pkg_1.0.dsc 531s fakeroot debian/rules binary 531s make: Nothing to be done for 'build'. 531s rm -rf debian/tmp 531s mkdir -p debian/tmp/DEBIAN 531s dpkg-gencontrol 531s dpkg-deb --root-owner-group --build debian/tmp .. 531s dpkg-deb: building package 'test-pkg' in '../test-pkg_1.0_all.deb'. 531s dpkg-genbuildinfo --build=full -O../test-pkg_1.0_s390x.buildinfo 531s dpkg-genchanges --build=full -O../test-pkg_1.0_s390x.changes 531s dpkg-genchanges: info: including full source code in upload 531s dpkg-source --after-build . 532s signfile test-pkg_1.0.dsc 532s dpkg-buildpackage: info: full upload; Debian-native package (full source is included) 532s signfile test-pkg_1.0_s390x.buildinfo 532s signfile test-pkg_1.0_s390x.changes 532s + env --chdir=/tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg-1.0/ dpkg-buildpackage --sign-keyfile=/tmp/autopkgtest.dghVVw/autopkgtest_tmp/key.asc --target=clean 532s dpkg-buildpackage: info: source package test-pkg 532s dpkg-buildpackage: info: source version 1.0 532s dpkg-buildpackage: info: source distribution unstable 532s dpkg-buildpackage: info: source changed by sbuild fake uploader 532s fakeroot debian/rules clean 532s rm -rf debian/files debian/tmp 532s + verify orig deb dsc bin_changes 532s + verify_orig 532s + echo verifying test-pkg_1.0.tar.xz 532s verifying test-pkg_1.0.tar.xz 532s + cat 532s + base64 -d 532s + xz -cd 532s + xz -cd 532s + diffoscope /tmp/autopkgtest.dghVVw/autopkgtest_tmp/expected /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0.tar 532s + rm /tmp/autopkgtest.dghVVw/autopkgtest_tmp/expected /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0.tar 532s + verify_deb 532s + echo verifying test-pkg_1.0_all.deb 532s verifying test-pkg_1.0_all.deb 532s + grep ^data\.tar\. 532s + ar t /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0_all.deb 532s + data_tar=data.tar.zst 532s + cat 532s + base64 -d 532s + diffoscope /tmp/autopkgtest.dghVVw/autopkgtest_tmp/expected /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0_all.deb 532s + rm /tmp/autopkgtest.dghVVw/autopkgtest_tmp/expected 532s + verify_dsc 532s + echo verifying test-pkg_1.0.dsc 532s verifying test-pkg_1.0.dsc 532s + dscverify --keyring=/tmp/autopkgtest.dghVVw/autopkgtest_tmp/gpghome/pubring.kbx /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0.dsc 532s /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0.dsc: 532s Good signature found 532s validating test-pkg_1.0.tar.xz 532s All files validated successfully. 532s + verify_bin_changes 532s + echo verifying test-pkg_1.0_s390x.changes 532s verifying test-pkg_1.0_s390x.changes 532s + dscverify --keyring=/tmp/autopkgtest.dghVVw/autopkgtest_tmp/gpghome/pubring.kbx /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0_s390x.changes 532s /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0_s390x.changes: 532s Good signature found 532s validating test-pkg_1.0.dsc 532s Good signature found 532s validating test-pkg_1.0.tar.xz 532s validating test-pkg_1.0_all.deb 532s validating test-pkg_1.0_s390x.buildinfo 532s Good signature found 532s All files validated successfully. 532s + rm /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0_all.deb /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0.tar.xz /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0.dsc 532s + rm -f /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0_s390x.changes /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0_source.changes /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0_s390x.buildinfo /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0_source.buildinfo /tmp/autopkgtest.dghVVw/autopkgtest_tmp/pre-build-commands.log 532s + run_sbuild test-pkg-1.0 --source 532s + workingdir=test-pkg-1.0 532s + shift 532s + env --chdir=/tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg-1.0/ sbuild --no-source-only-changes --nolog --bd-uninstallable-explainer=apt --chroot=/tmp/autopkgtest.dghVVw/autopkgtest_tmp/chroot.tar --chroot-mode=unshare --keyid=sbuild fake uploader --pre-build-commands=echo %SBUILD_DSC > /tmp/autopkgtest.dghVVw/autopkgtest_tmp/pre-build-commands.log --no-run-lintian --no-run-autopkgtest --no-apt-upgrade --no-apt-distupgrade --no-apt-update --source 532s The Debian buildds switched to the "unshare" backend and sbuild will default to it in the future. 532s To start using "unshare" add this to your `~/.config/sbuild/config.pl`: 532s $chroot_mode = "unshare"; 532s If you want to keep the old "schroot" mode even in the future, add the following to your `~/.config/sbuild/config.pl`: 532s $chroot_mode = "schroot"; 532s $schroot = "schroot"; 533s dpkg-buildpackage: info: source package test-pkg 533s dpkg-buildpackage: info: source version 1.0 533s dpkg-buildpackage: info: source distribution unstable 533s dpkg-buildpackage: info: source changed by sbuild fake uploader 533s fakeroot debian/rules clean 533s rm -rf debian/files debian/tmp 533s dpkg-source: info: using source format '3.0 (native)' 533s dpkg-source: info: building test-pkg in test-pkg_1.0.tar.xz 533s dpkg-source: info: building test-pkg in test-pkg_1.0.dsc 533s sbuild (Debian sbuild) 0.88.3ubuntu1 (07 February 2025) on autopkgtest.local 533s 533s +==============================================================================+ 533s | test-pkg 1.0 (s390x) Thu, 20 Feb 2025 00:21:19 +0000 | 533s +==============================================================================+ 533s 533s Package: test-pkg 533s Version: 1.0 533s Source Version: 1.0 533s Distribution: unstable 533s Machine Architecture: s390x 533s Host Architecture: s390x 533s Build Architecture: s390x 533s Build Type: full 533s 533s I: No tarballs found in /home/ubuntu/.cache/sbuild 533s newuidmap: open of uid_map failed: Permission denied 533s bad exit status (1): unshare --map-user 0 --map-group 0 --map-users 100000,1,1 --map-groups 100000,1,1 chown 1:1 /tmp/tmp.sbuild.VMXP10Bz6C 533s E: Error creating chroot session: skipping test-pkg 533s 533s +------------------------------------------------------------------------------+ 533s | Summary Thu, 20 Feb 2025 00:21:19 +0000 | 533s +------------------------------------------------------------------------------+ 533s 533s Build Architecture: s390x 533s Build Type: full 533s Build-Space: 0 533s Build-Time: 0 533s Distribution: unstable 533s Fail-Stage: create-session 533s Host Architecture: s390x 533s Install-Time: 0 533s Job: /tmp/autopkgtest.dghVVw/autopkgtest_tmp/test-pkg_1.0.dsc 533s Machine Architecture: s390x 533s Package: test-pkg 533s Package-Time: 0 533s Source-Version: 1.0 533s Space: 0 533s Status: failed 533s Version: 1.0 533s -------------------------------------------------------------------------------- 533s Finished at 2025-02-20T00:21:19Z 533s Build needed 00:00:00, 0k disk space 533s E: Error creating chroot session: skipping test-pkg 533s /tmp/autopkgtest.dghVVw/wrapper.sh: checking for leaked background processes... 533s /tmp/autopkgtest.dghVVw/wrapper.sh: waiting for tee/cat subprocesses... 533s /tmp/autopkgtest.dghVVw/wrapper.sh: cleaning up... 533s /tmp/autopkgtest.dghVVw/wrapper.sh: Exit status: 1 533s autopkgtest: DBG: testbed command exited with code 1 534s autopkgtest [00:21:20]: test unshare: -----------------------] 534s autopkgtest: DBG: testbed executing test finished with exit status 1 534s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dghVVw/unshare-stdout /tmp/autopkgtest-work.5m_u5fw5/out/unshare-stdout 534s autopkgtest: DBG: got reply from testbed: ok 534s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dghVVw/unshare-stderr /tmp/autopkgtest-work.5m_u5fw5/out/unshare-stderr 534s autopkgtest: DBG: got reply from testbed: ok 534s autopkgtest [00:21:20]: test unshare: - - - - - - - - - - results - - - - - - - - - - 534s unshare FAIL non-zero exit status 1 534s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dghVVw/unshare-artifacts/ /tmp/autopkgtest-work.5m_u5fw5/out/artifacts/ 535s autopkgtest: DBG: got reply from testbed: ok 535s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.dghVVw/unshare-artifacts', '/tmp/autopkgtest.dghVVw/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 535s autopkgtest: DBG: testbed command exited with code 0 535s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 535s autopkgtest [00:21:21]: @@@@@@@@@@@@@@@@@@@@ summary 535s hint-testsuite-triggers SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 535s hint-testsuite-triggers SKIP Test lists explicitly supported architectures, but the current architecture s390x isn't listed. 535s build-procenv PASS 535s unshare FAIL non-zero exit status 1 535s autopkgtest: DBG: testbed stop 535s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.dghVVw 535s autopkgtest: DBG: sending command to testbed: close 552s autopkgtest: DBG: got reply from testbed: ok 552s autopkgtest: DBG: sending command to testbed: quit 552s nova [W] Using flock in prodstack6-s390x 552s Creating nova instance adt-plucky-s390x-sbuild-20250220-001226-juju-7f2275-prod-proposed-migration-environment-15-064970f3-10d8-46da-b712-949b4bf6f324 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 552s nova [W] Timed out waiting for 6bfb0385-9fb9-4111-8503-61b10f4da802 to get deleted. 552s nova [W] Using flock in prodstack6-s390x 552s Creating nova instance adt-plucky-s390x-sbuild-20250220-001226-juju-7f2275-prod-proposed-migration-environment-15-064970f3-10d8-46da-b712-949b4bf6f324 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 552s nova [W] Timed out waiting for ade9e770-498b-4711-aab6-5bdefe59f828 to get deleted.