0s autopkgtest: DBG: testbed init 0s autopkgtest [08:37:50]: starting date and time: 2025-02-15 08:37:50+0000 0s autopkgtest [08:37:50]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [08:37:50]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.izmg96u8/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:rust-defaults,src:libgit2,src:rustc-1.84 --apt-upgrade rust-gix-chunk --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-9.secgroup --name adt-plucky-s390x-rust-gix-chunk-20250215-083750-juju-7f2275-prod-proposed-migration-environment-15-20648332-c18c-42fb-a23d-130613d46dc1 --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 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.0vrfca 106s autopkgtest: DBG: sending command to testbed: print-execute-command 106s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.odfcmmoj/runcmd 106s autopkgtest: DBG: sending command to testbed: capabilities 106s autopkgtest: DBG: got reply from testbed: ok reboot isolation-machine revert-full-system revert suggested-normal-user=ubuntu root-on-testbed 106s autopkgtest: DBG: testbed capabilities: ['reboot', 'isolation-machine', 'revert-full-system', 'revert', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 106s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0vrfca'], kind short, sout raw, serr pipe, env [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.0vrfca/wrapper.sh 106s autopkgtest: DBG: got reply from testbed: ok 106s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0vrfca/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 [08:39:36]: 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 [08:39:36]: testbed apt version: 2.9.28 106s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed has eatmydata 107s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [08:39:37]: @@@@@@@@@@@@@@@@@@@@ test bed setup 107s 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 [] 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest [08:39:37]: 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 [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [08:39:38]: updating testbed package index (apt update) 108s 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/restricted Sources [3120 B] 108s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [864 kB] 109s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.5 kB] 109s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [66.4 kB] 109s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [80.4 kB] 109s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 109s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [806 kB] 109s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4016 B] 109s Fetched 1949 kB in 1s (2021 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:rust-defaults:any src:libgit2:any src:rustc-1.84: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:rust-defaults:any src:libgit2:any src:rustc-1.84:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s 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.0vrfca/${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 gcc-14-base libatomic1 libgcc-s1 libstdc++6 110s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 110s Need to get 995 kB of archives. 110s After this operation, 0 B of additional disk space will be used. 110s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 111s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 111s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 111s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 111s Fetched 995 kB in 1s (1823 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 ... 80969 files and directories currently installed.) 111s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 111s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 111s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 111s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 111s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 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 ... 80969 files and directories currently installed.) 111s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 111s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 111s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 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 ... 80969 files and directories currently installed.) 111s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 111s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 111s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 111s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 111s Processing triggers for libc-bin (2.40-4ubuntu1) ... 112s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 112s + /usr/lib/apt/apt-helper analyze-pattern ?true 112s + uname -r 112s + sed s/\./\\./g 112s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 112s + apt list ?obsolete 112s + tail -n+2 112s + cut -d/ -f1 112s + grep -v ^linux-.*6\.12\.0-15-generic.* 112s + true 112s + obsolete_pkgs= 112s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 112s Reading package lists... 112s Building dependency tree... 112s Reading state information... 112s The following packages will be REMOVED: 112s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 112s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 112s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 112s linux-tools-6.11.0-8-generic* 112s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 112s After this operation, 167 MB disk space will be freed. 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 ... 80969 files and directories currently installed.) 112s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 112s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 112s Removing libpython3.12t64:s390x (3.12.9-1) ... 112s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 112s Removing libnsl2:s390x (1.3.0-3build3) ... 112s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 112s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 112s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 113s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 113s Processing triggers for libc-bin (2.40-4ubuntu1) ... 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 113s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 113s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 113s + grep -q trusty /etc/lsb-release 113s + [ ! -d /usr/share/doc/unattended-upgrades ] 113s + [ ! -d /usr/share/doc/lxd ] 113s + [ ! -d /usr/share/doc/lxd-client ] 113s + [ ! -d /usr/share/doc/snapd ] 113s + type iptables 113s + cat 113s + chmod 755 /etc/rc.local 113s + . /etc/rc.local 113s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 113s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 113s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 113s + uname -m 113s + [ s390x = ppc64le ] 113s + [ -d /run/systemd/system ] 113s + systemd-detect-virt --quiet --vm 113s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 113s + cat 113s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 113s + echo COMPRESS=lz4 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [08:39:43]: upgrading testbed (apt dist-upgrade and autopurge) 113s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 114s Reading package lists... 114s Building dependency tree... 114s Reading state information... 114s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 114s Starting 2 pkgProblemResolver with broken count: 0 114s Done 114s Entering ResolveByKeep 114s 114s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 114s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s Starting pkgProblemResolver with broken count: 0 115s Starting 2 pkgProblemResolver with broken count: 0 115s Done 115s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 115s autopkgtest: DBG: testbed command exited with code 0 115s 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.0vrfca/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 115s autopkgtest: DBG: testbed command exited with code 1 115s autopkgtest [08:39:45]: rebooting testbed after setup commands that affected boot 115s autopkgtest: DBG: sending command to testbed: reboot 131s autopkgtest: DBG: got reply from testbed: ok 131s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 131s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0vrfca'], kind short, sout raw, serr pipe, env [] 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.0vrfca/autopkgtest-reboot 132s autopkgtest: DBG: got reply from testbed: ok 132s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0vrfca/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0vrfca/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0vrfca/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0vrfca'], kind short, sout raw, serr pipe, env [] 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.0vrfca/autopkgtest-reboot-prepare 133s autopkgtest: DBG: got reply from testbed: ok 133s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0vrfca/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0vrfca/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest [08:40:03]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 133s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.0vrfca/testbed-packages"], kind short, sout raw, serr pipe, env [] 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/testbed-packages /tmp/autopkgtest-work.izmg96u8/out/testbed-packages 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 134s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0vrfca'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.0vrfca/autopkgtest-reboot 134s autopkgtest: DBG: got reply from testbed: ok 134s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0vrfca/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0vrfca/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 134s autopkgtest: DBG: testbed command exited with code 0 134s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0vrfca/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.0vrfca'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.0vrfca/autopkgtest-reboot-prepare 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.0vrfca/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.0vrfca/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: Binaries: initialising 135s autopkgtest [08:40:05]: @@@@@@@@@@@@@@@@@@@@ apt-source rust-gix-chunk 135s autopkgtest: DBG: blame += rust-gix-chunk 135s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 135s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rust-gix-chunk'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-gix-chunk-dev$'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-gix-chunk-dev=0.4.8-1'], kind short, sout pipe, serr raw, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: install_deps: deps_new=[] 136s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.0vrfca/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rust-gix-chunk=0.4.8-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x rust-gix-chunk_*.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=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1'] 136s + cd / 136s + mktemp -d /tmp/autopkgtest.0vrfca/build.XXX 136s + builddir=/tmp/autopkgtest.0vrfca/build.Myu 136s + cd /tmp/autopkgtest.0vrfca/build.Myu 136s + apt-get source -d -q --only-source rust-gix-chunk=0.4.8-1 137s + OUT=Reading package lists... 137s NOTICE: 'rust-gix-chunk' packaging is maintained in the 'Git' version control system at: 137s https://salsa.debian.org/rust-team/debcargo-conf.git [src/gix-chunk] 137s Please use: 137s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/gix-chunk] 137s to retrieve the latest (possibly unreleased) updates to the package. 137s Need to get 14.3 kB of source archives. 137s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-chunk 0.4.8-1 (dsc) [2230 B] 137s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-chunk 0.4.8-1 (tar) [9358 B] 137s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-chunk 0.4.8-1 (diff) [2752 B] 137s Fetched 14.3 kB in 0s (58.5 kB/s) 137s Download complete and in download only mode 137s + [ -n ] 137s + + grep ^Get: 137s echo Reading package lists... 137s NOTICE: 'rust-gix-chunk' packaging is maintained in the 'Git' version control system at: 137s https://salsa.debian.org/rust-team/debcargo-conf.git [src/gix-chunk] 137s Please use: 137s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/gix-chunk] 137s to retrieve the latest (possibly unreleased) updates to the package. 137s Need to get 14.3 kB of source archives. 137s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-chunk 0.4.8-1 (dsc) [2230 B] 137s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-chunk 0.4.8-1 (tar) [9358 B] 137s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-chunk 0.4.8-1 (diff) [2752 B] 137s Fetched 14.3 kB in 0s (58.5 kB/s) 137s Download complete and in download only mode 137s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-chunk 0.4.8-1 (dsc) [2230 B] 137s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-chunk 0.4.8-1 (tar) [9358 B] 137s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-chunk 0.4.8-1 (diff) [2752 B] 137s + dpkg-source -x rust-gix-chunk_0.4.8-1.dsc src 137s gpgv: Signature made Tue Apr 16 15:49:02 2024 UTC 137s gpgv: using RSA key 5340D001360CA656E3497EB70C48EA2A7A8FFD7B 137s gpgv: issuer "plugwash@debian.org" 137s gpgv: Can't check signature: No public key 137s dpkg-source: warning: cannot verify inline signature for ./rust-gix-chunk_0.4.8-1.dsc: no acceptable signature found 137s + chmod -R a+rX . 137s + cd src/. 137s + pwd 137s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest [08:40:07]: testing package rust-gix-chunk version 0.4.8-1 137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/build.Myu/src/debian/ /tmp/autopkgtest-work.izmg96u8/out/pkg/debian/ 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 137s autopkgtest: DBG: processing dependency @ 137s autopkgtest: DBG: synthesised dependency librust-gix-chunk-dev 137s autopkgtest: DBG: Test defined: name rust-gix-chunk:@ path None command "/usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-gix-chunk:@'] depends ['dh-cargo (>= 18)', 'librust-gix-chunk-dev'] 137s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 137s autopkgtest: DBG: processing dependency @ 137s autopkgtest: DBG: synthesised dependency librust-gix-chunk-dev 137s autopkgtest: DBG: Test defined: name librust-gix-chunk-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-chunk-dev:default'] depends ['dh-cargo (>= 18)', 'librust-gix-chunk-dev'] 137s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 137s autopkgtest: DBG: processing dependency @ 137s autopkgtest: DBG: synthesised dependency librust-gix-chunk-dev 137s autopkgtest: DBG: Test defined: name librust-gix-chunk-dev: path None command "/usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-chunk-dev:'] depends ['dh-cargo (>= 18)', 'librust-gix-chunk-dev'] 137s autopkgtest [08:40:07]: build not needed 137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/build.Myu/src/ /tmp/autopkgtest-work.izmg96u8/out/tests-tree/ 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 138s autopkgtest: DBG: processing dependency @ 138s autopkgtest: DBG: synthesised dependency librust-gix-chunk-dev 138s autopkgtest: DBG: Test defined: name rust-gix-chunk:@ path None command "/usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-gix-chunk:@'] depends ['dh-cargo (>= 18)', 'librust-gix-chunk-dev'] 138s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 138s autopkgtest: DBG: processing dependency @ 138s autopkgtest: DBG: synthesised dependency librust-gix-chunk-dev 138s autopkgtest: DBG: Test defined: name librust-gix-chunk-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-chunk-dev:default'] depends ['dh-cargo (>= 18)', 'librust-gix-chunk-dev'] 138s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 138s autopkgtest: DBG: processing dependency @ 138s autopkgtest: DBG: synthesised dependency librust-gix-chunk-dev 138s autopkgtest: DBG: Test defined: name librust-gix-chunk-dev: path None command "/usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-chunk-dev:'] depends ['dh-cargo (>= 18)', 'librust-gix-chunk-dev'] 138s autopkgtest [08:40:08]: test rust-gix-chunk:@: preparing testbed 138s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-cargo (>= 18)', 'librust-gix-chunk-dev'] 138s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 138s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-gix-chunk-dev'] 138s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-gix-chunk-dev 138s autopkgtest: DBG: can use apt-get on testbed: True 138s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-cargo (>= 18), librust-gix-chunk-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 138s Reading package lists... 138s Building dependency tree... 138s Reading state information... 138s Starting pkgProblemResolver with broken count: 0 138s Starting 2 pkgProblemResolver with broken count: 0 138s Done 138s The following NEW packages will be installed: 138s autoconf automake autopoint autotools-dev cargo cargo-1.84 cpp cpp-14 138s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 138s dh-cargo dh-cargo-tools dh-strip-nondeterminism dwz gcc gcc-14 138s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext intltool-debian 138s libarchive-zip-perl libasan8 libcc1-0 libdebhelper-perl 138s libfile-stripnondeterminism-perl libgcc-14-dev libgit2-1.9 libgomp1 libisl23 138s libitm1 libmpc3 librust-gix-chunk-dev librust-proc-macro2-dev 138s librust-quote-dev librust-syn-dev librust-thiserror-1-dev 138s librust-thiserror-impl-1-dev librust-unicode-ident-dev libstd-rust-1.84 138s libstd-rust-1.84-dev libtool libubsan1 m4 po-debconf rustc rustc-1.84 138s 0 upgraded, 49 newly installed, 0 to remove and 0 not upgraded. 138s Need to get 132 MB of archives. 138s After this operation, 502 MB of additional disk space will be used. 138s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 139s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 139s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 139s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 139s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 139s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libgit2-1.9 s390x 1.9.0~ds-0ubuntu1 [601 kB] 139s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [29.9 MB] 140s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84-dev s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [47.9 MB] 141s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 141s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 141s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 141s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 141s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 141s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 141s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 141s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 141s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 141s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 141s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 141s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 141s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 142s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 142s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 142s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 142s Get:25 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [6414 kB] 142s Get:26 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [7497 kB] 142s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 142s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 142s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 142s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 142s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 142s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 142s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 142s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 142s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 142s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 142s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 142s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 142s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc s390x 1.84.0ubuntu1 [2830 B] 142s Get:40 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo s390x 1.84.0ubuntu1 [2240 B] 142s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo-tools all 31ubuntu4 [5834 B] 142s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo all 31ubuntu4 [8668 B] 142s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 142s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 142s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 142s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 142s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 142s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 142s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gix-chunk-dev s390x 0.4.8-1 [11.2 kB] 143s Fetched 132 MB in 4s (33.6 MB/s) 143s Selecting previously unselected package m4. 143s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 143s Preparing to unpack .../00-m4_1.4.19-5_s390x.deb ... 143s Unpacking m4 (1.4.19-5) ... 143s Selecting previously unselected package autoconf. 143s Preparing to unpack .../01-autoconf_2.72-3_all.deb ... 143s Unpacking autoconf (2.72-3) ... 143s Selecting previously unselected package autotools-dev. 143s Preparing to unpack .../02-autotools-dev_20220109.1_all.deb ... 143s Unpacking autotools-dev (20220109.1) ... 143s Selecting previously unselected package automake. 143s Preparing to unpack .../03-automake_1%3a1.17-3_all.deb ... 143s Unpacking automake (1:1.17-3) ... 143s Selecting previously unselected package autopoint. 143s Preparing to unpack .../04-autopoint_0.23.1-1_all.deb ... 143s Unpacking autopoint (0.23.1-1) ... 143s Selecting previously unselected package libgit2-1.9:s390x. 143s Preparing to unpack .../05-libgit2-1.9_1.9.0~ds-0ubuntu1_s390x.deb ... 143s Unpacking libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 143s Selecting previously unselected package libstd-rust-1.84:s390x. 143s Preparing to unpack .../06-libstd-rust-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 143s Unpacking libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 143s Selecting previously unselected package libstd-rust-1.84-dev:s390x. 143s Preparing to unpack .../07-libstd-rust-1.84-dev_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 143s Unpacking libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 144s Selecting previously unselected package libisl23:s390x. 144s Preparing to unpack .../08-libisl23_0.27-1_s390x.deb ... 144s Unpacking libisl23:s390x (0.27-1) ... 144s Selecting previously unselected package libmpc3:s390x. 144s Preparing to unpack .../09-libmpc3_1.3.1-1build2_s390x.deb ... 144s Unpacking libmpc3:s390x (1.3.1-1build2) ... 144s Selecting previously unselected package cpp-14-s390x-linux-gnu. 144s Preparing to unpack .../10-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package cpp-14. 144s Preparing to unpack .../11-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package cpp-s390x-linux-gnu. 144s Preparing to unpack .../12-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 144s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 144s Selecting previously unselected package cpp. 144s Preparing to unpack .../13-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 144s Unpacking cpp (4:14.2.0-1ubuntu1) ... 144s Selecting previously unselected package libcc1-0:s390x. 144s Preparing to unpack .../14-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package libgomp1:s390x. 144s Preparing to unpack .../15-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package libitm1:s390x. 144s Preparing to unpack .../16-libitm1_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package libasan8:s390x. 144s Preparing to unpack .../17-libasan8_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package libubsan1:s390x. 144s Preparing to unpack .../18-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package libgcc-14-dev:s390x. 144s Preparing to unpack .../19-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 144s Selecting previously unselected package gcc-14-s390x-linux-gnu. 144s Preparing to unpack .../20-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 144s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package gcc-14. 145s Preparing to unpack .../21-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 145s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 145s Selecting previously unselected package gcc-s390x-linux-gnu. 145s Preparing to unpack .../22-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 145s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 145s Selecting previously unselected package gcc. 145s Preparing to unpack .../23-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 145s Unpacking gcc (4:14.2.0-1ubuntu1) ... 145s Selecting previously unselected package rustc-1.84. 145s Preparing to unpack .../24-rustc-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 145s Unpacking rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 145s Selecting previously unselected package cargo-1.84. 145s Preparing to unpack .../25-cargo-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 145s Unpacking cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 145s Selecting previously unselected package libdebhelper-perl. 145s Preparing to unpack .../26-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 145s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 145s Selecting previously unselected package libtool. 145s Preparing to unpack .../27-libtool_2.5.4-3build1_all.deb ... 145s Unpacking libtool (2.5.4-3build1) ... 145s Selecting previously unselected package dh-autoreconf. 145s Preparing to unpack .../28-dh-autoreconf_20_all.deb ... 145s Unpacking dh-autoreconf (20) ... 145s Selecting previously unselected package libarchive-zip-perl. 145s Preparing to unpack .../29-libarchive-zip-perl_1.68-1_all.deb ... 145s Unpacking libarchive-zip-perl (1.68-1) ... 145s Selecting previously unselected package libfile-stripnondeterminism-perl. 145s Preparing to unpack .../30-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 145s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 145s Selecting previously unselected package dh-strip-nondeterminism. 145s Preparing to unpack .../31-dh-strip-nondeterminism_1.14.1-2_all.deb ... 145s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 145s Selecting previously unselected package debugedit. 145s Preparing to unpack .../32-debugedit_1%3a5.1-2_s390x.deb ... 145s Unpacking debugedit (1:5.1-2) ... 145s Selecting previously unselected package dwz. 145s Preparing to unpack .../33-dwz_0.15-1build6_s390x.deb ... 145s Unpacking dwz (0.15-1build6) ... 145s Selecting previously unselected package gettext. 145s Preparing to unpack .../34-gettext_0.23.1-1_s390x.deb ... 145s Unpacking gettext (0.23.1-1) ... 145s Selecting previously unselected package intltool-debian. 145s Preparing to unpack .../35-intltool-debian_0.35.0+20060710.6_all.deb ... 145s Unpacking intltool-debian (0.35.0+20060710.6) ... 145s Selecting previously unselected package po-debconf. 145s Preparing to unpack .../36-po-debconf_1.0.21+nmu1_all.deb ... 145s Unpacking po-debconf (1.0.21+nmu1) ... 145s Selecting previously unselected package debhelper. 145s Preparing to unpack .../37-debhelper_13.24.1ubuntu2_all.deb ... 145s Unpacking debhelper (13.24.1ubuntu2) ... 145s Selecting previously unselected package rustc. 145s Preparing to unpack .../38-rustc_1.84.0ubuntu1_s390x.deb ... 145s Unpacking rustc (1.84.0ubuntu1) ... 145s Selecting previously unselected package cargo. 145s Preparing to unpack .../39-cargo_1.84.0ubuntu1_s390x.deb ... 145s Unpacking cargo (1.84.0ubuntu1) ... 145s Selecting previously unselected package dh-cargo-tools. 145s Preparing to unpack .../40-dh-cargo-tools_31ubuntu4_all.deb ... 145s Unpacking dh-cargo-tools (31ubuntu4) ... 145s Selecting previously unselected package dh-cargo. 145s Preparing to unpack .../41-dh-cargo_31ubuntu4_all.deb ... 145s Unpacking dh-cargo (31ubuntu4) ... 145s Selecting previously unselected package librust-unicode-ident-dev:s390x. 145s Preparing to unpack .../42-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 145s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 145s Selecting previously unselected package librust-proc-macro2-dev:s390x. 145s Preparing to unpack .../43-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 145s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 145s Selecting previously unselected package librust-quote-dev:s390x. 145s Preparing to unpack .../44-librust-quote-dev_1.0.37-1_s390x.deb ... 145s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 145s Selecting previously unselected package librust-syn-dev:s390x. 145s Preparing to unpack .../45-librust-syn-dev_2.0.96-2_s390x.deb ... 145s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 145s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 145s Preparing to unpack .../46-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 145s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 145s Selecting previously unselected package librust-thiserror-1-dev:s390x. 145s Preparing to unpack .../47-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 145s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 145s Selecting previously unselected package librust-gix-chunk-dev:s390x. 145s Preparing to unpack .../48-librust-gix-chunk-dev_0.4.8-1_s390x.deb ... 145s Unpacking librust-gix-chunk-dev:s390x (0.4.8-1) ... 145s Setting up dh-cargo-tools (31ubuntu4) ... 145s Setting up libarchive-zip-perl (1.68-1) ... 145s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 145s Setting up m4 (1.4.19-5) ... 145s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 145s Setting up autotools-dev (20220109.1) ... 145s Setting up libmpc3:s390x (1.3.1-1build2) ... 145s Setting up autopoint (0.23.1-1) ... 145s Setting up libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 145s Setting up autoconf (2.72-3) ... 145s Setting up libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 145s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 145s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 145s Setting up dwz (0.15-1build6) ... 145s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 145s Setting up libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 145s Setting up debugedit (1:5.1-2) ... 145s Setting up libisl23:s390x (0.27-1) ... 145s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 145s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 145s Setting up automake (1:1.17-3) ... 145s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 145s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 145s Setting up gettext (0.23.1-1) ... 145s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 145s Setting up intltool-debian (0.35.0+20060710.6) ... 145s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 145s Setting up cpp-14 (14.2.0-17ubuntu1) ... 145s Setting up dh-strip-nondeterminism (1.14.1-2) ... 145s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 145s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 145s Setting up po-debconf (1.0.21+nmu1) ... 145s Setting up librust-quote-dev:s390x (1.0.37-1) ... 145s Setting up librust-syn-dev:s390x (2.0.96-2) ... 145s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 145s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 145s Setting up cpp (4:14.2.0-1ubuntu1) ... 145s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 145s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 145s Setting up gcc-14 (14.2.0-17ubuntu1) ... 145s Setting up librust-gix-chunk-dev:s390x (0.4.8-1) ... 145s Setting up libtool (2.5.4-3build1) ... 145s Setting up gcc (4:14.2.0-1ubuntu1) ... 145s Setting up dh-autoreconf (20) ... 145s Setting up rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 145s Setting up rustc (1.84.0ubuntu1) ... 145s Setting up cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 145s Setting up debhelper (13.24.1ubuntu2) ... 145s Setting up cargo (1.84.0ubuntu1) ... 145s Setting up dh-cargo (31ubuntu4) ... 145s Processing triggers for libc-bin (2.40-4ubuntu1) ... 145s Processing triggers for man-db (2.13.0-1) ... 146s Processing triggers for install-info (7.1.1-1) ... 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-gix-chunk-dev'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.0vrfca/rust-gix-chunk:@-packages.all"], kind short, sout raw, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/rust-gix-chunk%3A%40-packages.all /tmp/autopkgtest-work.izmg96u8/out/rust-gix-chunk%3A%40-packages.all 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.0vrfca/build.Myu/src'], kind short, sout raw, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.0vrfca/build.Myu/src already exists 147s autopkgtest [08:40:17]: test rust-gix-chunk:@: /usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets --all-features 147s autopkgtest [08:40:17]: test rust-gix-chunk:@: [----------------------- 147s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.0vrfca/wrapper.sh --debug --artifacts=/tmp/autopkgtest.0vrfca/rust-gix-chunk:@-artifacts --chdir=/tmp/autopkgtest.0vrfca/build.Myu/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.0vrfca/rust-gix-chunk:@-stderr --stdout=/tmp/autopkgtest.0vrfca/rust-gix-chunk:@-stdout --tmp=/tmp/autopkgtest.0vrfca/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- bash -ec '/usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets --all-features'"], kind test, sout raw, serr raw, env [] 147s /tmp/autopkgtest.0vrfca/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.0vrfca/rust-gix-chunk:@-artifacts 147s /tmp/autopkgtest.0vrfca/wrapper.sh: changing to directory: /tmp/autopkgtest.0vrfca/build.Myu/src 147s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 147s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 147s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 147s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 147s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: LANG=C.UTF-8 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LANGUAGE 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_ADDRESS 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_ALL 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_COLLATE 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_CTYPE 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_IDENTIFICATION 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_MEASUREMENT 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_MESSAGES 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_MONETARY 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_NAME 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_NUMERIC 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_PAPER 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_TELEPHONE 147s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_TIME 147s /tmp/autopkgtest.0vrfca/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 147s /tmp/autopkgtest.0vrfca/wrapper.sh: pretending to be a login shell 147s /tmp/autopkgtest.0vrfca/wrapper.sh: will write standard error to /tmp/autopkgtest.0vrfca/rust-gix-chunk:@-stderr 147s /tmp/autopkgtest.0vrfca/wrapper.sh: will write stdout to /tmp/autopkgtest.0vrfca/rust-gix-chunk:@-stdout 147s /tmp/autopkgtest.0vrfca/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.0vrfca/autopkgtest_tmp 147s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1 147s /tmp/autopkgtest.0vrfca/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets --all-features 147s /tmp/autopkgtest.0vrfca/wrapper.sh: copying /tmp/tmp.8JAqmQI3nH/out to stdout and file: /tmp/autopkgtest.0vrfca/rust-gix-chunk:@-stdout 147s /tmp/autopkgtest.0vrfca/wrapper.sh: copying /tmp/tmp.8JAqmQI3nH/err to standard error and file: /tmp/autopkgtest.0vrfca/rust-gix-chunk:@-stdout 147s /tmp/autopkgtest.0vrfca/wrapper.sh: writing script pid 1824 to /tmp/autopkgtest_script_pid 147s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 147s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 147s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 147s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.xVH8Cr1uUO/registry/ 147s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 147s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 147s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 147s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--all-features'],) {} 147s Compiling proc-macro2 v1.0.92 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.xVH8Cr1uUO/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.xVH8Cr1uUO/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.xVH8Cr1uUO/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.xVH8Cr1uUO/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.xVH8Cr1uUO/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.xVH8Cr1uUO/target/debug/deps --cap-lints warn` 147s Compiling unicode-ident v1.0.13 147s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.xVH8Cr1uUO/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.xVH8Cr1uUO/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.xVH8Cr1uUO/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.xVH8Cr1uUO/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.xVH8Cr1uUO/target/debug/deps -L dependency=/tmp/tmp.xVH8Cr1uUO/target/debug/deps --cap-lints warn` 148s Compiling thiserror v1.0.69 148s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.xVH8Cr1uUO/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.xVH8Cr1uUO/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.xVH8Cr1uUO/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.xVH8Cr1uUO/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=dd39d6a520033168 -C extra-filename=-dd39d6a520033168 --out-dir /tmp/tmp.xVH8Cr1uUO/target/debug/build/thiserror-dd39d6a520033168 -L dependency=/tmp/tmp.xVH8Cr1uUO/target/debug/deps --cap-lints warn` 148s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.xVH8Cr1uUO/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.xVH8Cr1uUO/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.xVH8Cr1uUO/target/debug/deps:/tmp/tmp.xVH8Cr1uUO/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.xVH8Cr1uUO/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.xVH8Cr1uUO/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 148s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 148s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 148s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/gix-chunk-0.4.8=/usr/share/cargo/registry/gix-chunk-0.4.8--remap-path-prefix/tmp/tmp.xVH8Cr1uUO/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.xVH8Cr1uUO/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.xVH8Cr1uUO/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.xVH8Cr1uUO/target/debug/deps:/tmp/tmp.xVH8Cr1uUO/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.xVH8Cr1uUO/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.xVH8Cr1uUO/target/debug/build/thiserror-dd39d6a520033168/build-script-build` 148s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 148s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 148s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 148s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 148s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 148s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.xVH8Cr1uUO/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.xVH8Cr1uUO/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.xVH8Cr1uUO/target/debug/deps OUT_DIR=/tmp/tmp.xVH8Cr1uUO/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.xVH8Cr1uUO/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.xVH8Cr1uUO/target/debug/deps -L dependency=/tmp/tmp.xVH8Cr1uUO/target/debug/deps --extern unicode_ident=/tmp/tmp.xVH8Cr1uUO/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 148s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 148s Compiling quote v1.0.37 148s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.xVH8Cr1uUO/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.xVH8Cr1uUO/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.xVH8Cr1uUO/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.xVH8Cr1uUO/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.xVH8Cr1uUO/target/debug/deps -L dependency=/tmp/tmp.xVH8Cr1uUO/target/debug/deps --extern proc_macro2=/tmp/tmp.xVH8Cr1uUO/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 148s Compiling syn v2.0.96 148s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.xVH8Cr1uUO/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.xVH8Cr1uUO/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.xVH8Cr1uUO/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.xVH8Cr1uUO/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=b2618e2f2b5bd1a7 -C extra-filename=-b2618e2f2b5bd1a7 --out-dir /tmp/tmp.xVH8Cr1uUO/target/debug/deps -L dependency=/tmp/tmp.xVH8Cr1uUO/target/debug/deps --extern proc_macro2=/tmp/tmp.xVH8Cr1uUO/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.xVH8Cr1uUO/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.xVH8Cr1uUO/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 151s Compiling thiserror-impl v1.0.69 151s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.xVH8Cr1uUO/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.xVH8Cr1uUO/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.xVH8Cr1uUO/target/debug/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.xVH8Cr1uUO/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=47c26cf9f34eaa1a -C extra-filename=-47c26cf9f34eaa1a --out-dir /tmp/tmp.xVH8Cr1uUO/target/debug/deps -L dependency=/tmp/tmp.xVH8Cr1uUO/target/debug/deps --extern proc_macro2=/tmp/tmp.xVH8Cr1uUO/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.xVH8Cr1uUO/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.xVH8Cr1uUO/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.xVH8Cr1uUO/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.xVH8Cr1uUO/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.xVH8Cr1uUO/target/debug/deps OUT_DIR=/tmp/tmp.xVH8Cr1uUO/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.xVH8Cr1uUO/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5cbb283d943c993e -C extra-filename=-5cbb283d943c993e --out-dir /tmp/tmp.xVH8Cr1uUO/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.xVH8Cr1uUO/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.xVH8Cr1uUO/target/debug/deps --extern thiserror_impl=/tmp/tmp.xVH8Cr1uUO/target/debug/deps/libthiserror_impl-47c26cf9f34eaa1a.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/gix-chunk-0.4.8=/usr/share/cargo/registry/gix-chunk-0.4.8 --remap-path-prefix /tmp/tmp.xVH8Cr1uUO/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 152s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 152s | 152s = note: this feature is not stably supported; its behavior can change in the future 152s 152s warning: `thiserror` (lib) generated 1 warning 152s Compiling gix-chunk v0.4.8 (/usr/share/cargo/registry/gix-chunk-0.4.8) 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gix_chunk CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-chunk-0.4.8 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-chunk-0.4.8/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='Interact with the git chunk file format used in multi-pack index and commit-graph files' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-chunk CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.4.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.xVH8Cr1uUO/target/debug/deps rustc --crate-name gix_chunk --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1d8eb70f32dba976 -C extra-filename=-1d8eb70f32dba976 --out-dir /tmp/tmp.xVH8Cr1uUO/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.xVH8Cr1uUO/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.xVH8Cr1uUO/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.xVH8Cr1uUO/target/debug/deps --extern thiserror=/tmp/tmp.xVH8Cr1uUO/target/s390x-unknown-linux-gnu/debug/deps/libthiserror-5cbb283d943c993e.rlib -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/gix-chunk-0.4.8=/usr/share/cargo/registry/gix-chunk-0.4.8 --remap-path-prefix /tmp/tmp.xVH8Cr1uUO/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 153s warning: `gix-chunk` (lib test) generated 1 warning (1 duplicate) 153s Finished `test` profile [unoptimized + debuginfo] target(s) in 5.16s 153s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-chunk-0.4.8 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-chunk-0.4.8/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='Interact with the git chunk file format used in multi-pack index and commit-graph files' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-chunk CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.4.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.xVH8Cr1uUO/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.xVH8Cr1uUO/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.xVH8Cr1uUO/target/s390x-unknown-linux-gnu/debug/deps/gix_chunk-1d8eb70f32dba976` 153s 153s running 0 tests 153s 153s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 153s 153s /tmp/autopkgtest.0vrfca/wrapper.sh: checking for leaked background processes... 153s /tmp/autopkgtest.0vrfca/wrapper.sh: waiting for tee/cat subprocesses... 153s /tmp/autopkgtest.0vrfca/wrapper.sh: cleaning up... 153s /tmp/autopkgtest.0vrfca/wrapper.sh: Exit status: 0 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest [08:40:23]: test rust-gix-chunk:@: -----------------------] 153s autopkgtest: DBG: testbed executing test finished with exit status 0 153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/rust-gix-chunk%3A%40-stdout /tmp/autopkgtest-work.izmg96u8/out/rust-gix-chunk%3A%40-stdout 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/rust-gix-chunk%3A%40-stderr /tmp/autopkgtest-work.izmg96u8/out/rust-gix-chunk%3A%40-stderr 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest [08:40:23]: test rust-gix-chunk:@: - - - - - - - - - - results - - - - - - - - - - 153s rust-gix-chunk:@ PASS 153s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/rust-gix-chunk%3A%40-artifacts/ /tmp/autopkgtest-work.izmg96u8/out/artifacts/ 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.0vrfca/rust-gix-chunk:@-artifacts', '/tmp/autopkgtest.0vrfca/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest [08:40:24]: test librust-gix-chunk-dev:default: preparing testbed 154s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-gix-chunk-dev'], deps_new=['dh-cargo (>= 18)', 'librust-gix-chunk-dev'] 154s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 154s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-gix-chunk-dev'] 154s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-gix-chunk-dev 154s autopkgtest: DBG: can use apt-get on testbed: True 154s 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', 'dh-cargo (>= 18), librust-gix-chunk-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 154s Reading package lists... 154s Building dependency tree... 154s Reading state information... 154s Starting pkgProblemResolver with broken count: 0 154s Starting 2 pkgProblemResolver with broken count: 0 154s Done 154s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-gix-chunk-dev'], kind short, sout pipe, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:default-packages.all"], kind short, sout raw, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev%3Adefault-packages.all /tmp/autopkgtest-work.izmg96u8/out/librust-gix-chunk-dev%3Adefault-packages.all 155s autopkgtest: DBG: got reply from testbed: ok 155s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.0vrfca/build.Myu/src'], kind short, sout raw, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.0vrfca/build.Myu/src already exists 155s autopkgtest [08:40:25]: test librust-gix-chunk-dev:default: /usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets 155s autopkgtest [08:40:25]: test librust-gix-chunk-dev:default: [----------------------- 155s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.0vrfca/wrapper.sh --debug --artifacts=/tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:default-artifacts --chdir=/tmp/autopkgtest.0vrfca/build.Myu/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.0vrfca/librust-gix-chunk-dev:default-stderr --stdout=/tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:default-stdout --tmp=/tmp/autopkgtest.0vrfca/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- bash -ec '/usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets'"], kind test, sout raw, serr raw, env [] 155s /tmp/autopkgtest.0vrfca/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:default-artifacts 155s /tmp/autopkgtest.0vrfca/wrapper.sh: changing to directory: /tmp/autopkgtest.0vrfca/build.Myu/src 155s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 155s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 155s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 155s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 155s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: LANG=C.UTF-8 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LANGUAGE 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_ADDRESS 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_ALL 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_COLLATE 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_CTYPE 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_IDENTIFICATION 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_MEASUREMENT 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_MESSAGES 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_MONETARY 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_NAME 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_NUMERIC 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_PAPER 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_TELEPHONE 155s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_TIME 155s /tmp/autopkgtest.0vrfca/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 155s /tmp/autopkgtest.0vrfca/wrapper.sh: pretending to be a login shell 155s /tmp/autopkgtest.0vrfca/wrapper.sh: will write standard error to /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:default-stderr 155s /tmp/autopkgtest.0vrfca/wrapper.sh: will write stdout to /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:default-stdout 155s /tmp/autopkgtest.0vrfca/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.0vrfca/autopkgtest_tmp 155s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1 155s /tmp/autopkgtest.0vrfca/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets 155s /tmp/autopkgtest.0vrfca/wrapper.sh: copying /tmp/tmp.hlGyaFq30R/out to stdout and file: /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:default-stdout 155s /tmp/autopkgtest.0vrfca/wrapper.sh: copying /tmp/tmp.hlGyaFq30R/err to standard error and file: /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:default-stdout 155s /tmp/autopkgtest.0vrfca/wrapper.sh: writing script pid 2134 to /tmp/autopkgtest_script_pid 155s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 155s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 155s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 155s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.Wj6q3ZrJO1/registry/ 155s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 155s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 155s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 155s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets'],) {} 155s Compiling proc-macro2 v1.0.92 155s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Wj6q3ZrJO1/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.Wj6q3ZrJO1/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Wj6q3ZrJO1/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.Wj6q3ZrJO1/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps --cap-lints warn` 155s Compiling unicode-ident v1.0.13 155s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.Wj6q3ZrJO1/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.Wj6q3ZrJO1/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.Wj6q3ZrJO1/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.Wj6q3ZrJO1/target/debug/deps -L dependency=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps --cap-lints warn` 155s Compiling thiserror v1.0.69 155s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.Wj6q3ZrJO1/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.Wj6q3ZrJO1/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.Wj6q3ZrJO1/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=dd39d6a520033168 -C extra-filename=-dd39d6a520033168 --out-dir /tmp/tmp.Wj6q3ZrJO1/target/debug/build/thiserror-dd39d6a520033168 -L dependency=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps --cap-lints warn` 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.Wj6q3ZrJO1/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.Wj6q3ZrJO1/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Wj6q3ZrJO1/target/debug/deps:/tmp/tmp.Wj6q3ZrJO1/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.Wj6q3ZrJO1/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Wj6q3ZrJO1/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 156s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 156s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/gix-chunk-0.4.8=/usr/share/cargo/registry/gix-chunk-0.4.8--remap-path-prefix/tmp/tmp.Wj6q3ZrJO1/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.Wj6q3ZrJO1/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.Wj6q3ZrJO1/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.Wj6q3ZrJO1/target/debug/deps:/tmp/tmp.Wj6q3ZrJO1/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.Wj6q3ZrJO1/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.Wj6q3ZrJO1/target/debug/build/thiserror-dd39d6a520033168/build-script-build` 156s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 156s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 156s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 156s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 156s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.Wj6q3ZrJO1/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.Wj6q3ZrJO1/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps OUT_DIR=/tmp/tmp.Wj6q3ZrJO1/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.Wj6q3ZrJO1/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.Wj6q3ZrJO1/target/debug/deps -L dependency=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps --extern unicode_ident=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 156s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 156s Compiling quote v1.0.37 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.Wj6q3ZrJO1/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.Wj6q3ZrJO1/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.Wj6q3ZrJO1/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.Wj6q3ZrJO1/target/debug/deps -L dependency=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps --extern proc_macro2=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 156s Compiling syn v2.0.96 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.Wj6q3ZrJO1/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.Wj6q3ZrJO1/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.Wj6q3ZrJO1/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=b2618e2f2b5bd1a7 -C extra-filename=-b2618e2f2b5bd1a7 --out-dir /tmp/tmp.Wj6q3ZrJO1/target/debug/deps -L dependency=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps --extern proc_macro2=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 159s Compiling thiserror-impl v1.0.69 159s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.Wj6q3ZrJO1/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.Wj6q3ZrJO1/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.Wj6q3ZrJO1/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=47c26cf9f34eaa1a -C extra-filename=-47c26cf9f34eaa1a --out-dir /tmp/tmp.Wj6q3ZrJO1/target/debug/deps -L dependency=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps --extern proc_macro2=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.Wj6q3ZrJO1/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.Wj6q3ZrJO1/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps OUT_DIR=/tmp/tmp.Wj6q3ZrJO1/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.Wj6q3ZrJO1/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5cbb283d943c993e -C extra-filename=-5cbb283d943c993e --out-dir /tmp/tmp.Wj6q3ZrJO1/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.Wj6q3ZrJO1/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps --extern thiserror_impl=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps/libthiserror_impl-47c26cf9f34eaa1a.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/gix-chunk-0.4.8=/usr/share/cargo/registry/gix-chunk-0.4.8 --remap-path-prefix /tmp/tmp.Wj6q3ZrJO1/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 160s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 160s | 160s = note: this feature is not stably supported; its behavior can change in the future 160s 160s warning: `thiserror` (lib) generated 1 warning 160s Compiling gix-chunk v0.4.8 (/usr/share/cargo/registry/gix-chunk-0.4.8) 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gix_chunk CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-chunk-0.4.8 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-chunk-0.4.8/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='Interact with the git chunk file format used in multi-pack index and commit-graph files' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-chunk CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.4.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps rustc --crate-name gix_chunk --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1d8eb70f32dba976 -C extra-filename=-1d8eb70f32dba976 --out-dir /tmp/tmp.Wj6q3ZrJO1/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.Wj6q3ZrJO1/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.Wj6q3ZrJO1/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Wj6q3ZrJO1/target/debug/deps --extern thiserror=/tmp/tmp.Wj6q3ZrJO1/target/s390x-unknown-linux-gnu/debug/deps/libthiserror-5cbb283d943c993e.rlib -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/gix-chunk-0.4.8=/usr/share/cargo/registry/gix-chunk-0.4.8 --remap-path-prefix /tmp/tmp.Wj6q3ZrJO1/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 160s warning: `gix-chunk` (lib test) generated 1 warning (1 duplicate) 160s Finished `test` profile [unoptimized + debuginfo] target(s) in 5.09s 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-chunk-0.4.8 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-chunk-0.4.8/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='Interact with the git chunk file format used in multi-pack index and commit-graph files' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-chunk CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.4.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.Wj6q3ZrJO1/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.Wj6q3ZrJO1/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.Wj6q3ZrJO1/target/s390x-unknown-linux-gnu/debug/deps/gix_chunk-1d8eb70f32dba976` 160s 160s running 0 tests 160s 160s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 160s 160s /tmp/autopkgtest.0vrfca/wrapper.sh: checking for leaked background processes... 160s /tmp/autopkgtest.0vrfca/wrapper.sh: waiting for tee/cat subprocesses... 160s /tmp/autopkgtest.0vrfca/wrapper.sh: cleaning up... 160s /tmp/autopkgtest.0vrfca/wrapper.sh: Exit status: 0 160s autopkgtest: DBG: testbed command exited with code 0 161s autopkgtest [08:40:31]: test librust-gix-chunk-dev:default: -----------------------] 161s autopkgtest: DBG: testbed executing test finished with exit status 0 161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev%3Adefault-stdout /tmp/autopkgtest-work.izmg96u8/out/librust-gix-chunk-dev%3Adefault-stdout 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev%3Adefault-stderr /tmp/autopkgtest-work.izmg96u8/out/librust-gix-chunk-dev%3Adefault-stderr 161s autopkgtest: DBG: got reply from testbed: ok 161s autopkgtest [08:40:31]: test librust-gix-chunk-dev:default: - - - - - - - - - - results - - - - - - - - - - 161s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev%3Adefault-artifacts/ /tmp/autopkgtest-work.izmg96u8/out/artifacts/ 161s librust-gix-chunk-dev:default PASS 162s autopkgtest: DBG: got reply from testbed: ok 162s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:default-artifacts', '/tmp/autopkgtest.0vrfca/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 162s autopkgtest: DBG: testbed command exited with code 0 162s autopkgtest [08:40:32]: test librust-gix-chunk-dev:: preparing testbed 162s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-gix-chunk-dev'], deps_new=['dh-cargo (>= 18)', 'librust-gix-chunk-dev'] 162s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 162s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-gix-chunk-dev'] 162s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-gix-chunk-dev 162s autopkgtest: DBG: can use apt-get on testbed: True 162s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-cargo (>= 18), librust-gix-chunk-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 162s Reading package lists... 162s Building dependency tree... 162s Reading state information... 162s Starting pkgProblemResolver with broken count: 0 162s Starting 2 pkgProblemResolver with broken count: 0 162s Done 163s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-gix-chunk-dev'], kind short, sout pipe, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:-packages.all"], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev%3A-packages.all /tmp/autopkgtest-work.izmg96u8/out/librust-gix-chunk-dev%3A-packages.all 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.0vrfca/build.Myu/src'], kind short, sout raw, serr raw, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.0vrfca/build.Myu/src already exists 163s autopkgtest [08:40:33]: test librust-gix-chunk-dev:: /usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets --no-default-features 163s autopkgtest [08:40:33]: test librust-gix-chunk-dev:: [----------------------- 163s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.0vrfca/wrapper.sh --debug --artifacts=/tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:-artifacts --chdir=/tmp/autopkgtest.0vrfca/build.Myu/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.0vrfca/librust-gix-chunk-dev:-stderr --stdout=/tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:-stdout --tmp=/tmp/autopkgtest.0vrfca/autopkgtest_tmp '--env=ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1' -- bash -ec '/usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets --no-default-features'"], kind test, sout raw, serr raw, env [] 163s /tmp/autopkgtest.0vrfca/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:-artifacts 163s /tmp/autopkgtest.0vrfca/wrapper.sh: changing to directory: /tmp/autopkgtest.0vrfca/build.Myu/src 163s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 163s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 163s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 163s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 163s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: LANG=C.UTF-8 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LANGUAGE 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_ADDRESS 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_ALL 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_COLLATE 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_CTYPE 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_IDENTIFICATION 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_MEASUREMENT 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_MESSAGES 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_MONETARY 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_NAME 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_NUMERIC 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_PAPER 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_TELEPHONE 163s /tmp/autopkgtest.0vrfca/wrapper.sh: unsetting environment: LC_TIME 163s /tmp/autopkgtest.0vrfca/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 163s /tmp/autopkgtest.0vrfca/wrapper.sh: pretending to be a login shell 163s /tmp/autopkgtest.0vrfca/wrapper.sh: will write standard error to /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:-stderr 163s /tmp/autopkgtest.0vrfca/wrapper.sh: will write stdout to /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:-stdout 163s /tmp/autopkgtest.0vrfca/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.0vrfca/autopkgtest_tmp 163s /tmp/autopkgtest.0vrfca/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=rust-defaults/1.84.0ubuntu1 libgit2/1.9.0~ds-0ubuntu1 rustc-1.84/1.84.0+dfsg0ubuntu1-0ubuntu1 163s /tmp/autopkgtest.0vrfca/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test gix-chunk 0.4.8 --all-targets --no-default-features 163s /tmp/autopkgtest.0vrfca/wrapper.sh: copying /tmp/tmp.BdSnA036pH/out to stdout and file: /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:-stdout 163s /tmp/autopkgtest.0vrfca/wrapper.sh: copying /tmp/tmp.BdSnA036pH/err to standard error and file: /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:-stdout 163s /tmp/autopkgtest.0vrfca/wrapper.sh: writing script pid 2446 to /tmp/autopkgtest_script_pid 163s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 163s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 163s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 163s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.ZnkXdFmjxZ/registry/ 164s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 164s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 164s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 164s debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', '-Zavoid-dev-deps', 'test', '--verbose', '--verbose', '-j2', '--target', 's390x-unknown-linux-gnu', '--all-targets', '--no-default-features'],) {} 164s Compiling proc-macro2 v1.0.92 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.ZnkXdFmjxZ/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.ZnkXdFmjxZ/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.ZnkXdFmjxZ/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.ZnkXdFmjxZ/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps --cap-lints warn` 164s Compiling unicode-ident v1.0.13 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.ZnkXdFmjxZ/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.ZnkXdFmjxZ/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.ZnkXdFmjxZ/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.ZnkXdFmjxZ/target/debug/deps -L dependency=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps --cap-lints warn` 164s Compiling thiserror v1.0.69 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.ZnkXdFmjxZ/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.ZnkXdFmjxZ/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.ZnkXdFmjxZ/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=dd39d6a520033168 -C extra-filename=-dd39d6a520033168 --out-dir /tmp/tmp.ZnkXdFmjxZ/target/debug/build/thiserror-dd39d6a520033168 -L dependency=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps --cap-lints warn` 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.ZnkXdFmjxZ/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.ZnkXdFmjxZ/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.ZnkXdFmjxZ/target/debug/deps:/tmp/tmp.ZnkXdFmjxZ/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.ZnkXdFmjxZ/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.ZnkXdFmjxZ/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 164s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 164s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 164s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 164s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.ZnkXdFmjxZ/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.ZnkXdFmjxZ/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps OUT_DIR=/tmp/tmp.ZnkXdFmjxZ/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.ZnkXdFmjxZ/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.ZnkXdFmjxZ/target/debug/deps -L dependency=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps --extern unicode_ident=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/gix-chunk-0.4.8=/usr/share/cargo/registry/gix-chunk-0.4.8--remap-path-prefix/tmp/tmp.ZnkXdFmjxZ/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.ZnkXdFmjxZ/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.ZnkXdFmjxZ/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.ZnkXdFmjxZ/target/debug/deps:/tmp/tmp.ZnkXdFmjxZ/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.ZnkXdFmjxZ/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.ZnkXdFmjxZ/target/debug/build/thiserror-dd39d6a520033168/build-script-build` 164s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 164s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 164s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 164s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 164s Compiling quote v1.0.37 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.ZnkXdFmjxZ/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.ZnkXdFmjxZ/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.ZnkXdFmjxZ/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.ZnkXdFmjxZ/target/debug/deps -L dependency=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps --extern proc_macro2=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 165s Compiling syn v2.0.96 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.ZnkXdFmjxZ/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.ZnkXdFmjxZ/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.ZnkXdFmjxZ/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=b2618e2f2b5bd1a7 -C extra-filename=-b2618e2f2b5bd1a7 --out-dir /tmp/tmp.ZnkXdFmjxZ/target/debug/deps -L dependency=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps --extern proc_macro2=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 167s Compiling thiserror-impl v1.0.69 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.ZnkXdFmjxZ/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.ZnkXdFmjxZ/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.ZnkXdFmjxZ/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=47c26cf9f34eaa1a -C extra-filename=-47c26cf9f34eaa1a --out-dir /tmp/tmp.ZnkXdFmjxZ/target/debug/deps -L dependency=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps --extern proc_macro2=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.ZnkXdFmjxZ/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.ZnkXdFmjxZ/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps OUT_DIR=/tmp/tmp.ZnkXdFmjxZ/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.ZnkXdFmjxZ/registry/thiserror-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5cbb283d943c993e -C extra-filename=-5cbb283d943c993e --out-dir /tmp/tmp.ZnkXdFmjxZ/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.ZnkXdFmjxZ/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps --extern thiserror_impl=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps/libthiserror_impl-47c26cf9f34eaa1a.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/gix-chunk-0.4.8=/usr/share/cargo/registry/gix-chunk-0.4.8 --remap-path-prefix /tmp/tmp.ZnkXdFmjxZ/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 169s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 169s | 169s = note: this feature is not stably supported; its behavior can change in the future 169s 169s warning: `thiserror` (lib) generated 1 warning 169s Compiling gix-chunk v0.4.8 (/usr/share/cargo/registry/gix-chunk-0.4.8) 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gix_chunk CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-chunk-0.4.8 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-chunk-0.4.8/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='Interact with the git chunk file format used in multi-pack index and commit-graph files' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-chunk CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.4.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps rustc --crate-name gix_chunk --edition=2021 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1d8eb70f32dba976 -C extra-filename=-1d8eb70f32dba976 --out-dir /tmp/tmp.ZnkXdFmjxZ/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.ZnkXdFmjxZ/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.ZnkXdFmjxZ/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.ZnkXdFmjxZ/target/debug/deps --extern thiserror=/tmp/tmp.ZnkXdFmjxZ/target/s390x-unknown-linux-gnu/debug/deps/libthiserror-5cbb283d943c993e.rlib -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/gix-chunk-0.4.8=/usr/share/cargo/registry/gix-chunk-0.4.8 --remap-path-prefix /tmp/tmp.ZnkXdFmjxZ/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 169s warning: `gix-chunk` (lib test) generated 1 warning (1 duplicate) 169s Finished `test` profile [unoptimized + debuginfo] target(s) in 5.38s 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-chunk-0.4.8 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-chunk-0.4.8/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='Interact with the git chunk file format used in multi-pack index and commit-graph files' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-chunk CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.4.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.ZnkXdFmjxZ/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.ZnkXdFmjxZ/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.ZnkXdFmjxZ/target/s390x-unknown-linux-gnu/debug/deps/gix_chunk-1d8eb70f32dba976` 169s 169s running 0 tests 169s 169s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 169s 169s /tmp/autopkgtest.0vrfca/wrapper.sh: checking for leaked background processes... 169s /tmp/autopkgtest.0vrfca/wrapper.sh: waiting for tee/cat subprocesses... 169s /tmp/autopkgtest.0vrfca/wrapper.sh: cleaning up... 169s /tmp/autopkgtest.0vrfca/wrapper.sh: Exit status: 0 169s autopkgtest: DBG: testbed command exited with code 0 169s autopkgtest [08:40:39]: test librust-gix-chunk-dev:: -----------------------] 169s autopkgtest: DBG: testbed executing test finished with exit status 0 169s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev%3A-stdout /tmp/autopkgtest-work.izmg96u8/out/librust-gix-chunk-dev%3A-stdout 170s autopkgtest: DBG: got reply from testbed: ok 170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev%3A-stderr /tmp/autopkgtest-work.izmg96u8/out/librust-gix-chunk-dev%3A-stderr 170s autopkgtest: DBG: got reply from testbed: ok 170s librust-gix-chunk-dev: PASS 170s autopkgtest [08:40:40]: test librust-gix-chunk-dev:: - - - - - - - - - - results - - - - - - - - - - 170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.0vrfca/librust-gix-chunk-dev%3A-artifacts/ /tmp/autopkgtest-work.izmg96u8/out/artifacts/ 170s autopkgtest: DBG: got reply from testbed: ok 170s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.0vrfca/librust-gix-chunk-dev:-artifacts', '/tmp/autopkgtest.0vrfca/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 170s autopkgtest [08:40:40]: @@@@@@@@@@@@@@@@@@@@ summary 170s rust-gix-chunk:@ PASS 170s librust-gix-chunk-dev:default PASS 170s librust-gix-chunk-dev: PASS 170s autopkgtest: DBG: testbed stop 170s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.0vrfca 170s autopkgtest: DBG: sending command to testbed: close 188s autopkgtest: DBG: got reply from testbed: ok 188s autopkgtest: DBG: sending command to testbed: quit 188s nova [W] Using flock in prodstack6-s390x 188s flock: timeout while waiting to get lock 188s Creating nova instance adt-plucky-s390x-rust-gix-chunk-20250215-083750-juju-7f2275-prod-proposed-migration-environment-15-20648332-c18c-42fb-a23d-130613d46dc1 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 188s nova [W] Timed out waiting for ef10213f-c672-47e6-b15b-af615102462b to get deleted.