0s autopkgtest: DBG: testbed init 0s autopkgtest [08:38:07]: starting date and time: 2025-02-15 08:38:07+0000 0s autopkgtest [08:38:07]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [08:38:07]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.tue5m9da/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-trace --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-4.secgroup --name adt-plucky-s390x-rust-gix-trace-20250215-083807-juju-7f2275-prod-proposed-migration-environment-15-fcef3db3-bae7-4296-98af-63ad19089a50 --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 110s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.4TwsDO 110s autopkgtest: DBG: sending command to testbed: print-execute-command 110s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.sh4hdjrz/runcmd 110s autopkgtest: DBG: sending command to testbed: capabilities 110s autopkgtest: DBG: got reply from testbed: ok revert suggested-normal-user=ubuntu isolation-machine reboot revert-full-system root-on-testbed 110s autopkgtest: DBG: testbed capabilities: ['revert', 'suggested-normal-user=ubuntu', 'isolation-machine', 'reboot', 'revert-full-system', 'root-on-testbed', 'has_internet'] 110s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4TwsDO'], kind short, sout raw, serr pipe, env [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.4TwsDO/wrapper.sh 110s autopkgtest: DBG: got reply from testbed: ok 110s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4TwsDO/wrapper.sh'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [08:39:58]: testbed dpkg architecture: s390x 111s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [08:39:58]: testbed apt version: 2.9.28 111s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest: DBG: testbed has eatmydata 111s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [08:39:58]: @@@@@@@@@@@@@@@@@@@@ test bed setup 111s 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 [] 111s autopkgtest: DBG: testbed command exited with code 0 111s autopkgtest [08:39:58]: testbed release detected to be: None 111s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: adding APT source: Types: deb deb-src 112s URIs: http://ftpmaster.internal/ubuntu/ 112s Suites: plucky-proposed 112s Components: main restricted universe multiverse 112s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 112s Package: * 112s Pin: release plucky-proposed 112s Pin-Priority: 500 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [08:39:59]: updating testbed package index (apt update) 112s 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'] 112s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 113s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 113s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 113s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 113s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 113s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.5 kB] 113s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [66.4 kB] 113s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [864 kB] 113s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [80.4 kB] 113s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 113s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [806 kB] 113s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4016 B] 113s Fetched 1949 kB in 1s (2002 kB/s) 114s Reading package lists... 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 114s Package: * 114s Pin: release plucky-proposed 114s Pin-Priority: 100 114s 114s Package: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any 114s Pin: release plucky-proposed 114s Pin-Priority: 995 114s 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 [] 114s autopkgtest: DBG: testbed command exited with code 0 114s 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.4TwsDO/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s 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'] 114s + lsb_release --codename --short 114s + RELEASE=plucky 114s + cat 114s + [ plucky != trusty ] 114s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 114s Reading package lists... 114s Building dependency tree... 114s Reading state information... 115s Calculating upgrade... 115s The following packages were automatically installed and are no longer required: 115s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 115s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 115s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 115s linux-tools-6.11.0-8-generic 115s Use 'sudo apt autoremove' to remove them. 115s The following packages will be upgraded: 115s gcc-14-base libatomic1 libgcc-s1 libstdc++6 115s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 115s Need to get 995 kB of archives. 115s After this operation, 0 B of additional disk space will be used. 115s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 115s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 115s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 115s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 116s Fetched 995 kB in 1s (1815 kB/s) 116s (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.) 116s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 116s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 116s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 116s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 116s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 116s (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.) 116s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 116s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 116s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 116s (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.) 116s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 116s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 116s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 116s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 116s Processing triggers for libc-bin (2.40-4ubuntu1) ... 116s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 116s + /usr/lib/apt/apt-helper analyze-pattern ?true 116s + uname -r 116s + sed s/\./\\./g 116s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 116s + apt list ?obsolete 116s + tail -n+2 116s + grep -v ^linux-.*6\.12\.0-15-generic.* 116s + cut -d/ -f1 116s + true 116s + obsolete_pkgs= 116s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 116s Reading package lists... 116s Building dependency tree... 116s Reading state information... 116s The following packages will be REMOVED: 116s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 116s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 116s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 116s linux-tools-6.11.0-8-generic* 117s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 117s After this operation, 167 MB disk space will be freed. 117s (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.) 117s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 117s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 117s Removing libpython3.12t64:s390x (3.12.9-1) ... 117s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 117s Removing libnsl2:s390x (1.3.0-3build3) ... 117s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 117s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 117s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 118s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 118s Processing triggers for libc-bin (2.40-4ubuntu1) ... 118s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 118s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 118s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 118s + grep -q trusty /etc/lsb-release 118s + [ ! -d /usr/share/doc/unattended-upgrades ] 118s + [ ! -d /usr/share/doc/lxd ] 118s + [ ! -d /usr/share/doc/lxd-client ] 118s + [ ! -d /usr/share/doc/snapd ] 118s + type iptables 118s + cat 118s + chmod 755 /etc/rc.local 118s + . /etc/rc.local 118s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 118s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 118s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 118s + uname -m 118s + [ s390x = ppc64le ] 118s + [ -d /run/systemd/system ] 118s + systemd-detect-virt --quiet --vm 118s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 118s + cat 118s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 118s + echo COMPRESS=lz4 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [08:40:05]: upgrading testbed (apt dist-upgrade and autopurge) 118s 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'] 118s Reading package lists... 118s Building dependency tree... 118s Reading state information... 118s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 118s Starting 2 pkgProblemResolver with broken count: 0 118s Done 119s Entering ResolveByKeep 119s 119s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 119s autopkgtest: DBG: testbed command exited with code 0 119s 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'] 119s Reading package lists... 119s Building dependency tree... 119s Reading state information... 119s Starting pkgProblemResolver with broken count: 0 119s Starting 2 pkgProblemResolver with broken count: 0 119s Done 119s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 119s autopkgtest: DBG: testbed command exited with code 0 119s 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.4TwsDO/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 120s autopkgtest: DBG: testbed command exited with code 1 120s autopkgtest [08:40:07]: rebooting testbed after setup commands that affected boot 120s autopkgtest: DBG: sending command to testbed: reboot 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 139s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4TwsDO'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.4TwsDO/autopkgtest-reboot 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4TwsDO/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4TwsDO/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4TwsDO/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4TwsDO'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.4TwsDO/autopkgtest-reboot-prepare 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4TwsDO/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4TwsDO/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest [08:40:28]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 141s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4TwsDO/testbed-packages"], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/testbed-packages /tmp/autopkgtest-work.tue5m9da/out/testbed-packages 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 141s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4TwsDO'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.4TwsDO/autopkgtest-reboot 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4TwsDO/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4TwsDO/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4TwsDO/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4TwsDO'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.4TwsDO/autopkgtest-reboot-prepare 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4TwsDO/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4TwsDO/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: Binaries: initialising 143s autopkgtest [08:40:30]: @@@@@@@@@@@@@@@@@@@@ apt-source rust-gix-trace 143s autopkgtest: DBG: blame += rust-gix-trace 143s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 143s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rust-gix-trace'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-gix-trace-dev$'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-gix-trace-dev=0.1.10-1'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: install_deps: deps_new=[] 144s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s 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.4TwsDO/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rust-gix-trace=0.1.10-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-trace_*.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'] 145s + cd / 145s + mktemp -d /tmp/autopkgtest.4TwsDO/build.XXX 145s + builddir=/tmp/autopkgtest.4TwsDO/build.cnS 145s + cd /tmp/autopkgtest.4TwsDO/build.cnS 145s + apt-get source -d -q --only-source rust-gix-trace=0.1.10-1 145s + OUT=Reading package lists... 145s NOTICE: 'rust-gix-trace' packaging is maintained in the 'Git' version control system at: 145s https://salsa.debian.org/rust-team/debcargo-conf.git [src/gix-trace] 145s Please use: 145s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/gix-trace] 145s to retrieve the latest (possibly unreleased) updates to the package. 145s Need to get 15.6 kB of source archives. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-trace 0.1.10-1 (dsc) [2181 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-trace 0.1.10-1 (tar) [10.4 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-trace 0.1.10-1 (diff) [2972 B] 145s Fetched 15.6 kB in 0s (50.2 kB/s) 145s Download complete and in download only mode 145s + [ -n ] 145s + echo Reading package lists... 145s NOTICE: 'rust-gix-trace' packaging is maintained in the 'Git' version control system at: 145s https://salsa.debian.org/rust-team/debcargo-conf.git [src/gix-trace] 145s Please use: 145s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/gix-trace] 145s to retrieve the latest (possibly unreleased) updates to the package. 145s Need to get 15.6 kB of source archives. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-trace 0.1.10-1 (dsc) [2181 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-trace 0.1.10-1 (tar) [10.4 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-trace 0.1.10-1 (diff) [2972 B] 145s Fetched 15.6 kB in 0s (50.2 kB/s) 145s Download complete and in download only mode 145s + grep ^Get: 145s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-trace 0.1.10-1 (dsc) [2181 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-trace 0.1.10-1 (tar) [10.4 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-gix-trace 0.1.10-1 (diff) [2972 B] 145s + dpkg-source -x rust-gix-trace_0.1.10-1.dsc src 145s gpgv: Signature made Wed Sep 18 21:16:48 2024 UTC 145s gpgv: using RSA key 5340D001360CA656E3497EB70C48EA2A7A8FFD7B 145s gpgv: issuer "plugwash@debian.org" 145s gpgv: Can't check signature: No public key 145s dpkg-source: warning: cannot verify inline signature for ./rust-gix-trace_0.1.10-1.dsc: no acceptable signature found 145s + chmod -R a+rX . 145s + cd src/. 145s + pwd 145s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest [08:40:32]: testing package rust-gix-trace version 0.1.10-1 145s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/build.cnS/src/debian/ /tmp/autopkgtest-work.tue5m9da/out/pkg/debian/ 145s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency librust-gix-trace-dev 146s autopkgtest: DBG: Test defined: name rust-gix-trace:@ path None command "/usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-gix-trace:@'] depends ['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 146s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency librust-gix-trace-dev 146s autopkgtest: DBG: Test defined: name librust-gix-trace-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-trace-dev:default'] depends ['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 146s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency librust-gix-trace-dev 146s autopkgtest: DBG: Test defined: name librust-gix-trace-dev:document-features path None command "/usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features --features document-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-trace-dev:document-features'] depends ['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 146s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency librust-gix-trace-dev 146s autopkgtest: DBG: Test defined: name librust-gix-trace-dev:tracing path None command "/usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features --features tracing" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-trace-dev:tracing'] depends ['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 146s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency librust-gix-trace-dev 146s autopkgtest: DBG: Test defined: name librust-gix-trace-dev:tracing-detail path None command "/usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features --features tracing-detail" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-trace-dev:tracing-detail'] depends ['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 146s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency librust-gix-trace-dev 146s autopkgtest: DBG: Test defined: name librust-gix-trace-dev: path None command "/usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-trace-dev:'] depends ['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 146s autopkgtest [08:40:33]: build not needed 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/build.cnS/src/ /tmp/autopkgtest-work.tue5m9da/out/tests-tree/ 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency librust-gix-trace-dev 146s autopkgtest: DBG: Test defined: name rust-gix-trace:@ path None command "/usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-gix-trace:@'] depends ['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 147s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 147s autopkgtest: DBG: processing dependency @ 147s autopkgtest: DBG: synthesised dependency librust-gix-trace-dev 147s autopkgtest: DBG: Test defined: name librust-gix-trace-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-trace-dev:default'] depends ['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 147s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 147s autopkgtest: DBG: processing dependency @ 147s autopkgtest: DBG: synthesised dependency librust-gix-trace-dev 147s autopkgtest: DBG: Test defined: name librust-gix-trace-dev:document-features path None command "/usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features --features document-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-trace-dev:document-features'] depends ['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 147s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 147s autopkgtest: DBG: processing dependency @ 147s autopkgtest: DBG: synthesised dependency librust-gix-trace-dev 147s autopkgtest: DBG: Test defined: name librust-gix-trace-dev:tracing path None command "/usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features --features tracing" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-trace-dev:tracing'] depends ['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 147s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 147s autopkgtest: DBG: processing dependency @ 147s autopkgtest: DBG: synthesised dependency librust-gix-trace-dev 147s autopkgtest: DBG: Test defined: name librust-gix-trace-dev:tracing-detail path None command "/usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features --features tracing-detail" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-trace-dev:tracing-detail'] depends ['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 147s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 147s autopkgtest: DBG: processing dependency @ 147s autopkgtest: DBG: synthesised dependency librust-gix-trace-dev 147s autopkgtest: DBG: Test defined: name librust-gix-trace-dev: path None command "/usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gix-trace-dev:'] depends ['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 147s autopkgtest [08:40:34]: test rust-gix-trace:@: preparing testbed 147s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 147s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 147s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 147s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-gix-trace-dev 147s autopkgtest: DBG: can use apt-get on testbed: True 147s 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-trace-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 147s Reading package lists... 147s Building dependency tree... 147s Reading state information... 147s Starting pkgProblemResolver with broken count: 0 147s Starting 2 pkgProblemResolver with broken count: 0 147s Done 148s The following NEW packages will be installed: 148s autoconf automake autopoint autotools-dev cargo cargo-1.84 cpp cpp-14 148s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 148s dh-cargo dh-cargo-tools dh-strip-nondeterminism dwz gcc gcc-14 148s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext intltool-debian 148s libarchive-zip-perl libasan8 libcc1-0 libdebhelper-perl 148s libfile-stripnondeterminism-perl libgcc-14-dev libgit2-1.9 libgomp1 libisl23 148s libitm1 libmpc3 librust-arbitrary-dev librust-cfg-if-dev 148s librust-critical-section-dev librust-derive-arbitrary-dev 148s librust-document-features-dev librust-gix-trace-dev librust-libc-dev 148s librust-litrs-dev librust-once-cell-dev librust-parking-lot-core-dev 148s librust-portable-atomic-dev librust-proc-macro2-dev librust-quote-dev 148s librust-rustc-std-workspace-core-dev librust-serde-derive-dev 148s librust-serde-dev librust-smallvec-dev librust-syn-1-dev librust-syn-dev 148s librust-tracing-core-dev librust-unicode-ident-dev librust-unicode-xid-dev 148s librust-valuable-derive-dev librust-valuable-dev libstd-rust-1.84 148s libstd-rust-1.84-dev libtool libubsan1 m4 po-debconf rustc rustc-1.84 148s 0 upgraded, 66 newly installed, 0 to remove and 0 not upgraded. 148s Need to get 134 MB of archives. 148s After this operation, 512 MB of additional disk space will be used. 148s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 148s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 148s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 148s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 148s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libgit2-1.9 s390x 1.9.0~ds-0ubuntu1 [601 kB] 148s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [29.9 MB] 150s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84-dev s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [47.9 MB] 153s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 153s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 153s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 153s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 153s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 153s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 153s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 153s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 153s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 153s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 153s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 153s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 153s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 154s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 154s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 154s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 154s Get:25 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [6414 kB] 154s Get:26 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [7497 kB] 154s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 154s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 154s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 154s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 154s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 154s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 154s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 154s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 154s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 154s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 154s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 154s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 155s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc s390x 1.84.0ubuntu1 [2830 B] 155s Get:40 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo s390x 1.84.0ubuntu1 [2240 B] 155s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo-tools all 31ubuntu4 [5834 B] 155s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo all 31ubuntu4 [8668 B] 155s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 155s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 155s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 155s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 155s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 155s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 155s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 155s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 155s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-xid-dev s390x 0.2.4-1 [14.3 kB] 155s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-litrs-dev s390x 0.4.0-1 [38.2 kB] 155s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-document-features-dev s390x 0.2.7-3 [15.1 kB] 155s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 155s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 155s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 155s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 155s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 155s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 155s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 155s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 155s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 155s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 155s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 155s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 155s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gix-trace-dev s390x 0.1.10-1 [12.0 kB] 155s Fetched 134 MB in 7s (18.6 MB/s) 155s Selecting previously unselected package m4. 155s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 155s Preparing to unpack .../00-m4_1.4.19-5_s390x.deb ... 155s Unpacking m4 (1.4.19-5) ... 155s Selecting previously unselected package autoconf. 155s Preparing to unpack .../01-autoconf_2.72-3_all.deb ... 155s Unpacking autoconf (2.72-3) ... 155s Selecting previously unselected package autotools-dev. 155s Preparing to unpack .../02-autotools-dev_20220109.1_all.deb ... 155s Unpacking autotools-dev (20220109.1) ... 155s Selecting previously unselected package automake. 155s Preparing to unpack .../03-automake_1%3a1.17-3_all.deb ... 155s Unpacking automake (1:1.17-3) ... 155s Selecting previously unselected package autopoint. 155s Preparing to unpack .../04-autopoint_0.23.1-1_all.deb ... 155s Unpacking autopoint (0.23.1-1) ... 155s Selecting previously unselected package libgit2-1.9:s390x. 155s Preparing to unpack .../05-libgit2-1.9_1.9.0~ds-0ubuntu1_s390x.deb ... 155s Unpacking libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 155s Selecting previously unselected package libstd-rust-1.84:s390x. 155s Preparing to unpack .../06-libstd-rust-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 155s Unpacking libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 156s Selecting previously unselected package libstd-rust-1.84-dev:s390x. 156s Preparing to unpack .../07-libstd-rust-1.84-dev_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 156s Unpacking libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 157s Selecting previously unselected package libisl23:s390x. 157s Preparing to unpack .../08-libisl23_0.27-1_s390x.deb ... 157s Unpacking libisl23:s390x (0.27-1) ... 157s Selecting previously unselected package libmpc3:s390x. 157s Preparing to unpack .../09-libmpc3_1.3.1-1build2_s390x.deb ... 157s Unpacking libmpc3:s390x (1.3.1-1build2) ... 157s Selecting previously unselected package cpp-14-s390x-linux-gnu. 157s Preparing to unpack .../10-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package cpp-14. 157s Preparing to unpack .../11-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package cpp-s390x-linux-gnu. 157s Preparing to unpack .../12-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 157s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 157s Selecting previously unselected package cpp. 157s Preparing to unpack .../13-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 157s Unpacking cpp (4:14.2.0-1ubuntu1) ... 157s Selecting previously unselected package libcc1-0:s390x. 157s Preparing to unpack .../14-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package libgomp1:s390x. 157s Preparing to unpack .../15-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package libitm1:s390x. 157s Preparing to unpack .../16-libitm1_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package libasan8:s390x. 157s Preparing to unpack .../17-libasan8_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package libubsan1:s390x. 157s Preparing to unpack .../18-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package libgcc-14-dev:s390x. 157s Preparing to unpack .../19-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package gcc-14-s390x-linux-gnu. 157s Preparing to unpack .../20-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package gcc-14. 157s Preparing to unpack .../21-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 157s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 157s Selecting previously unselected package gcc-s390x-linux-gnu. 157s Preparing to unpack .../22-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 157s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 157s Selecting previously unselected package gcc. 157s Preparing to unpack .../23-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 157s Unpacking gcc (4:14.2.0-1ubuntu1) ... 157s Selecting previously unselected package rustc-1.84. 157s Preparing to unpack .../24-rustc-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 157s Unpacking rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 158s Selecting previously unselected package cargo-1.84. 158s Preparing to unpack .../25-cargo-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 158s Unpacking cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 158s Selecting previously unselected package libdebhelper-perl. 158s Preparing to unpack .../26-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 158s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 158s Selecting previously unselected package libtool. 158s Preparing to unpack .../27-libtool_2.5.4-3build1_all.deb ... 158s Unpacking libtool (2.5.4-3build1) ... 158s Selecting previously unselected package dh-autoreconf. 158s Preparing to unpack .../28-dh-autoreconf_20_all.deb ... 158s Unpacking dh-autoreconf (20) ... 158s Selecting previously unselected package libarchive-zip-perl. 158s Preparing to unpack .../29-libarchive-zip-perl_1.68-1_all.deb ... 158s Unpacking libarchive-zip-perl (1.68-1) ... 158s Selecting previously unselected package libfile-stripnondeterminism-perl. 158s Preparing to unpack .../30-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 158s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 158s Selecting previously unselected package dh-strip-nondeterminism. 158s Preparing to unpack .../31-dh-strip-nondeterminism_1.14.1-2_all.deb ... 158s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 158s Selecting previously unselected package debugedit. 158s Preparing to unpack .../32-debugedit_1%3a5.1-2_s390x.deb ... 158s Unpacking debugedit (1:5.1-2) ... 158s Selecting previously unselected package dwz. 158s Preparing to unpack .../33-dwz_0.15-1build6_s390x.deb ... 158s Unpacking dwz (0.15-1build6) ... 158s Selecting previously unselected package gettext. 158s Preparing to unpack .../34-gettext_0.23.1-1_s390x.deb ... 158s Unpacking gettext (0.23.1-1) ... 158s Selecting previously unselected package intltool-debian. 158s Preparing to unpack .../35-intltool-debian_0.35.0+20060710.6_all.deb ... 158s Unpacking intltool-debian (0.35.0+20060710.6) ... 158s Selecting previously unselected package po-debconf. 158s Preparing to unpack .../36-po-debconf_1.0.21+nmu1_all.deb ... 158s Unpacking po-debconf (1.0.21+nmu1) ... 158s Selecting previously unselected package debhelper. 158s Preparing to unpack .../37-debhelper_13.24.1ubuntu2_all.deb ... 158s Unpacking debhelper (13.24.1ubuntu2) ... 158s Selecting previously unselected package rustc. 158s Preparing to unpack .../38-rustc_1.84.0ubuntu1_s390x.deb ... 158s Unpacking rustc (1.84.0ubuntu1) ... 158s Selecting previously unselected package cargo. 158s Preparing to unpack .../39-cargo_1.84.0ubuntu1_s390x.deb ... 158s Unpacking cargo (1.84.0ubuntu1) ... 158s Selecting previously unselected package dh-cargo-tools. 158s Preparing to unpack .../40-dh-cargo-tools_31ubuntu4_all.deb ... 158s Unpacking dh-cargo-tools (31ubuntu4) ... 158s Selecting previously unselected package dh-cargo. 158s Preparing to unpack .../41-dh-cargo_31ubuntu4_all.deb ... 158s Unpacking dh-cargo (31ubuntu4) ... 158s Selecting previously unselected package librust-unicode-ident-dev:s390x. 158s Preparing to unpack .../42-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 158s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 158s Selecting previously unselected package librust-proc-macro2-dev:s390x. 158s Preparing to unpack .../43-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 158s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 158s Selecting previously unselected package librust-quote-dev:s390x. 158s Preparing to unpack .../44-librust-quote-dev_1.0.37-1_s390x.deb ... 158s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 158s Selecting previously unselected package librust-syn-dev:s390x. 158s Preparing to unpack .../45-librust-syn-dev_2.0.96-2_s390x.deb ... 158s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 158s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 158s Preparing to unpack .../46-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 158s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 158s Selecting previously unselected package librust-arbitrary-dev:s390x. 158s Preparing to unpack .../47-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 158s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 158s Selecting previously unselected package librust-cfg-if-dev:s390x. 158s Preparing to unpack .../48-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 158s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 158s Selecting previously unselected package librust-critical-section-dev:s390x. 158s Preparing to unpack .../49-librust-critical-section-dev_1.2.0-1_s390x.deb ... 158s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 158s Selecting previously unselected package librust-unicode-xid-dev:s390x. 158s Preparing to unpack .../50-librust-unicode-xid-dev_0.2.4-1_s390x.deb ... 158s Unpacking librust-unicode-xid-dev:s390x (0.2.4-1) ... 158s Selecting previously unselected package librust-litrs-dev:s390x. 158s Preparing to unpack .../51-librust-litrs-dev_0.4.0-1_s390x.deb ... 158s Unpacking librust-litrs-dev:s390x (0.4.0-1) ... 158s Selecting previously unselected package librust-document-features-dev:s390x. 158s Preparing to unpack .../52-librust-document-features-dev_0.2.7-3_s390x.deb ... 158s Unpacking librust-document-features-dev:s390x (0.2.7-3) ... 158s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 158s Preparing to unpack .../53-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 158s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 158s Selecting previously unselected package librust-libc-dev:s390x. 158s Preparing to unpack .../54-librust-libc-dev_0.2.169-1_s390x.deb ... 158s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 158s Selecting previously unselected package librust-serde-derive-dev:s390x. 158s Preparing to unpack .../55-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 158s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 158s Selecting previously unselected package librust-serde-dev:s390x. 158s Preparing to unpack .../56-librust-serde-dev_1.0.217-1_s390x.deb ... 158s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 158s Selecting previously unselected package librust-smallvec-dev:s390x. 158s Preparing to unpack .../57-librust-smallvec-dev_1.13.2-1_s390x.deb ... 158s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 158s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 158s Preparing to unpack .../58-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 158s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 158s Selecting previously unselected package librust-portable-atomic-dev:s390x. 158s Preparing to unpack .../59-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 158s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 158s Selecting previously unselected package librust-once-cell-dev:s390x. 158s Preparing to unpack .../60-librust-once-cell-dev_1.20.2-1_s390x.deb ... 158s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 158s Selecting previously unselected package librust-syn-1-dev:s390x. 158s Preparing to unpack .../61-librust-syn-1-dev_1.0.109-3_s390x.deb ... 158s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 158s Selecting previously unselected package librust-valuable-derive-dev:s390x. 158s Preparing to unpack .../62-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 158s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 158s Selecting previously unselected package librust-valuable-dev:s390x. 158s Preparing to unpack .../63-librust-valuable-dev_0.1.0-4_s390x.deb ... 158s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 158s Selecting previously unselected package librust-tracing-core-dev:s390x. 158s Preparing to unpack .../64-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 158s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 158s Selecting previously unselected package librust-gix-trace-dev:s390x. 158s Preparing to unpack .../65-librust-gix-trace-dev_0.1.10-1_s390x.deb ... 158s Unpacking librust-gix-trace-dev:s390x (0.1.10-1) ... 158s Setting up dh-cargo-tools (31ubuntu4) ... 158s Setting up libarchive-zip-perl (1.68-1) ... 158s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 158s Setting up m4 (1.4.19-5) ... 158s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 158s Setting up autotools-dev (20220109.1) ... 158s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 158s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 158s Setting up libmpc3:s390x (1.3.1-1build2) ... 158s Setting up autopoint (0.23.1-1) ... 158s Setting up libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 158s Setting up autoconf (2.72-3) ... 158s Setting up libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 158s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 158s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 158s Setting up dwz (0.15-1build6) ... 158s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 158s Setting up libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 158s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 158s Setting up librust-unicode-xid-dev:s390x (0.2.4-1) ... 158s Setting up debugedit (1:5.1-2) ... 158s Setting up libisl23:s390x (0.27-1) ... 158s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 158s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 158s Setting up automake (1:1.17-3) ... 158s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 158s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 158s Setting up librust-libc-dev:s390x (0.2.169-1) ... 158s Setting up gettext (0.23.1-1) ... 158s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 158s Setting up intltool-debian (0.35.0+20060710.6) ... 158s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 158s Setting up cpp-14 (14.2.0-17ubuntu1) ... 158s Setting up dh-strip-nondeterminism (1.14.1-2) ... 158s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 158s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 158s Setting up po-debconf (1.0.21+nmu1) ... 158s Setting up librust-quote-dev:s390x (1.0.37-1) ... 158s Setting up librust-litrs-dev:s390x (0.4.0-1) ... 158s Setting up librust-syn-dev:s390x (2.0.96-2) ... 158s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 158s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 158s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 158s Setting up cpp (4:14.2.0-1ubuntu1) ... 158s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 158s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 158s Setting up librust-serde-dev:s390x (1.0.217-1) ... 158s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 158s Setting up librust-document-features-dev:s390x (0.2.7-3) ... 158s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 158s Setting up gcc-14 (14.2.0-17ubuntu1) ... 158s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 158s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 158s Setting up libtool (2.5.4-3build1) ... 158s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 158s Setting up gcc (4:14.2.0-1ubuntu1) ... 158s Setting up dh-autoreconf (20) ... 158s Setting up rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 158s Setting up rustc (1.84.0ubuntu1) ... 158s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 158s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 158s Setting up cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 158s Setting up debhelper (13.24.1ubuntu2) ... 158s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 158s Setting up librust-gix-trace-dev:s390x (0.1.10-1) ... 158s Setting up cargo (1.84.0ubuntu1) ... 158s Setting up dh-cargo (31ubuntu4) ... 158s Processing triggers for libc-bin (2.40-4ubuntu1) ... 158s Processing triggers for man-db (2.13.0-1) ... 159s Processing triggers for install-info (7.1.1-1) ... 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-gix-trace-dev'], kind short, sout pipe, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4TwsDO/rust-gix-trace:@-packages.all"], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/rust-gix-trace%3A%40-packages.all /tmp/autopkgtest-work.tue5m9da/out/rust-gix-trace%3A%40-packages.all 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4TwsDO/build.cnS/src'], kind short, sout raw, serr raw, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.4TwsDO/build.cnS/src already exists 160s autopkgtest [08:40:47]: test rust-gix-trace:@: /usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --all-features 160s autopkgtest [08:40:47]: test rust-gix-trace:@: [----------------------- 160s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.4TwsDO/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4TwsDO/rust-gix-trace:@-artifacts --chdir=/tmp/autopkgtest.4TwsDO/build.cnS/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.4TwsDO/rust-gix-trace:@-stderr --stdout=/tmp/autopkgtest.4TwsDO/rust-gix-trace:@-stdout --tmp=/tmp/autopkgtest.4TwsDO/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-trace 0.1.10 --all-targets --all-features'"], kind test, sout raw, serr raw, env [] 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4TwsDO/rust-gix-trace:@-artifacts 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: changing to directory: /tmp/autopkgtest.4TwsDO/build.cnS/src 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: LANG=C.UTF-8 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LANGUAGE 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_ADDRESS 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_ALL 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_COLLATE 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_CTYPE 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_IDENTIFICATION 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MEASUREMENT 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MESSAGES 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MONETARY 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_NAME 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_NUMERIC 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_PAPER 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_TELEPHONE 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_TIME 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: pretending to be a login shell 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: will write standard error to /tmp/autopkgtest.4TwsDO/rust-gix-trace:@-stderr 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: will write stdout to /tmp/autopkgtest.4TwsDO/rust-gix-trace:@-stdout 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4TwsDO/autopkgtest_tmp 160s /tmp/autopkgtest.4TwsDO/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 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --all-features 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: copying /tmp/tmp.sCjf42EiJu/out to stdout and file: /tmp/autopkgtest.4TwsDO/rust-gix-trace:@-stdout 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: copying /tmp/tmp.sCjf42EiJu/err to standard error and file: /tmp/autopkgtest.4TwsDO/rust-gix-trace:@-stdout 160s /tmp/autopkgtest.4TwsDO/wrapper.sh: writing script pid 1981 to /tmp/autopkgtest_script_pid 160s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 160s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 160s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 160s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.reWlQcuODl/registry/ 160s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 160s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 160s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 160s 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'],) {} 161s Compiling once_cell v1.20.2 161s Compiling litrs v0.4.0 161s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=litrs CARGO_MANIFEST_DIR=/tmp/tmp.reWlQcuODl/registry/litrs-0.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.reWlQcuODl/registry/litrs-0.4.0/Cargo.toml CARGO_PKG_AUTHORS='Lukas Kalbertodt ' CARGO_PKG_DESCRIPTION='Parse and inspect Rust literals (i.e. tokens in the Rust programming language 161s representing fixed values). Particularly useful for proc macros, but can also 161s be used outside of a proc-macro context. 161s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=litrs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/LukasKalbertodt/litrs/' CARGO_PKG_RUST_VERSION=1.54 CARGO_PKG_VERSION=0.4.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.reWlQcuODl/target/debug/deps rustc --crate-name litrs --edition=2018 /tmp/tmp.reWlQcuODl/registry/litrs-0.4.0/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("check_suffix", "default", "proc-macro2", "unicode-xid"))' -C metadata=7e342af424c8557e -C extra-filename=-7e342af424c8557e --out-dir /tmp/tmp.reWlQcuODl/target/debug/deps -L dependency=/tmp/tmp.reWlQcuODl/target/debug/deps --cap-lints warn` 161s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.reWlQcuODl/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.reWlQcuODl/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.reWlQcuODl/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.reWlQcuODl/registry/once_cell-1.20.2/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="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.reWlQcuODl/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.reWlQcuODl/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.reWlQcuODl/target/debug/deps --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-trace-0.1.10=/usr/share/cargo/registry/gix-trace-0.1.10 --remap-path-prefix /tmp/tmp.reWlQcuODl/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 161s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 161s | 161s = note: this feature is not stably supported; its behavior can change in the future 161s 161s warning: `once_cell` (lib) generated 1 warning 161s Compiling tracing-core v0.1.32 161s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/tmp/tmp.reWlQcuODl/registry/tracing-core-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.reWlQcuODl/registry/tracing-core-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing. 161s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.32 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.reWlQcuODl/target/debug/deps rustc --crate-name tracing_core --edition=2018 /tmp/tmp.reWlQcuODl/registry/tracing-core-0.1.32/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="once_cell"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "once_cell", "std", "valuable"))' -C metadata=ca78a6f38c53cf68 -C extra-filename=-ca78a6f38c53cf68 --out-dir /tmp/tmp.reWlQcuODl/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.reWlQcuODl/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.reWlQcuODl/target/debug/deps --extern once_cell=/tmp/tmp.reWlQcuODl/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --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-trace-0.1.10=/usr/share/cargo/registry/gix-trace-0.1.10 --remap-path-prefix /tmp/tmp.reWlQcuODl/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 161s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 161s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/lib.rs:138:5 161s | 161s 138 | private_in_public, 161s | ^^^^^^^^^^^^^^^^^ 161s | 161s = note: `#[warn(renamed_and_removed_lints)]` on by default 161s 161s warning: unexpected `cfg` condition value: `alloc` 161s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:147:7 161s | 161s 147 | #[cfg(feature = "alloc")] 161s | ^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 161s = help: consider adding `alloc` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s = note: `#[warn(unexpected_cfgs)]` on by default 161s 161s warning: unexpected `cfg` condition value: `alloc` 161s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:150:7 161s | 161s 150 | #[cfg(feature = "alloc")] 161s | ^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 161s = help: consider adding `alloc` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition name: `tracing_unstable` 161s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:374:11 161s | 161s 374 | #[cfg(all(tracing_unstable, feature = "valuable"))] 161s | ^^^^^^^^^^^^^^^^ 161s | 161s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 161s = help: consider using a Cargo feature instead 161s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 161s [lints.rust] 161s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 161s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition name: `tracing_unstable` 161s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:719:11 161s | 161s 719 | #[cfg(all(tracing_unstable, feature = "valuable"))] 161s | ^^^^^^^^^^^^^^^^ 161s | 161s = help: consider using a Cargo feature instead 161s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 161s [lints.rust] 161s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 161s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition name: `tracing_unstable` 161s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:722:11 161s | 161s 722 | #[cfg(all(tracing_unstable, feature = "valuable"))] 161s | ^^^^^^^^^^^^^^^^ 161s | 161s = help: consider using a Cargo feature instead 161s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 161s [lints.rust] 161s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 161s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition name: `tracing_unstable` 161s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:730:11 161s | 161s 730 | #[cfg(all(tracing_unstable, feature = "valuable"))] 161s | ^^^^^^^^^^^^^^^^ 161s | 161s = help: consider using a Cargo feature instead 161s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 161s [lints.rust] 161s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 161s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition name: `tracing_unstable` 161s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:733:11 161s | 161s 733 | #[cfg(all(tracing_unstable, feature = "valuable"))] 161s | ^^^^^^^^^^^^^^^^ 161s | 161s = help: consider using a Cargo feature instead 161s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 161s [lints.rust] 161s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 161s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition name: `tracing_unstable` 161s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:270:15 161s | 161s 270 | #[cfg(all(tracing_unstable, feature = "valuable"))] 161s | ^^^^^^^^^^^^^^^^ 161s | 161s = help: consider using a Cargo feature instead 161s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 161s [lints.rust] 161s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 161s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 161s = note: see for more information about checking conditional configuration 161s 161s warning: creating a shared reference to mutable static is discouraged 161s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:458:9 161s | 161s 458 | &GLOBAL_DISPATCH 161s | ^^^^^^^^^^^^^^^^ shared reference to mutable static 161s | 161s = note: for more information, see 161s = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives 161s = note: `#[warn(static_mut_refs)]` on by default 161s help: use `&raw const` instead to create a raw pointer 161s | 161s 458 | &raw const GLOBAL_DISPATCH 161s | ~~~~~~~~~~ 161s 161s Compiling document-features v0.2.7 161s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=document_features CARGO_MANIFEST_DIR=/tmp/tmp.reWlQcuODl/registry/document-features-0.2.7 CARGO_MANIFEST_PATH=/tmp/tmp.reWlQcuODl/registry/document-features-0.2.7/Cargo.toml CARGO_PKG_AUTHORS='Slint Developers ' CARGO_PKG_DESCRIPTION='Extract documentation for the feature flags from comments in Cargo.toml' CARGO_PKG_HOMEPAGE='https://slint-ui.com' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=document-features CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/slint-ui/document-features' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.reWlQcuODl/target/debug/deps rustc --crate-name document_features --edition=2018 /tmp/tmp.reWlQcuODl/registry/document-features-0.2.7/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 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "self-test"))' -C metadata=860cdb88bde292f3 -C extra-filename=-860cdb88bde292f3 --out-dir /tmp/tmp.reWlQcuODl/target/debug/deps -L dependency=/tmp/tmp.reWlQcuODl/target/debug/deps --extern litrs=/tmp/tmp.reWlQcuODl/target/debug/deps/liblitrs-7e342af424c8557e.rlib --extern proc_macro --cap-lints warn` 161s warning: cannot find macro `self_test` in this scope 161s --> /tmp/tmp.reWlQcuODl/registry/document-features-0.2.7/lib.rs:46:10 161s | 161s 46 | #![doc = self_test!(/** 161s | ^^^^^^^^^ 161s | 161s = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! 161s = note: for more information, see issue #124535 161s = help: import `macro_rules` with `use` to make it callable above its definition 161s = note: `#[warn(out_of_scope_macro_calls)]` on by default 161s 161s warning: `tracing-core` (lib) generated 11 warnings (1 duplicate) 162s warning: `document-features` (lib) generated 1 warning 162s Compiling gix-trace v0.1.10 (/usr/share/cargo/registry/gix-trace-0.1.10) 162s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gix_trace CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-trace-0.1.10 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-trace-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='A crate to provide minimal `tracing` support that can be turned off to zero cost' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-trace CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.reWlQcuODl/target/debug/deps rustc --crate-name gix_trace --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 '--warn=clippy::pedantic' '--allow=clippy::wildcard_imports' '--allow=clippy::used_underscore_binding' '--allow=clippy::unused_self' '--allow=clippy::unreadable_literal' '--allow=clippy::unnecessary_wraps' '--allow=clippy::unnecessary_join' '--allow=clippy::trivially_copy_pass_by_ref' '--allow=clippy::transmute_ptr_to_ptr' '--allow=clippy::too_many_lines' '--allow=clippy::struct_field_names' '--allow=clippy::struct_excessive_bools' '--allow=clippy::stable_sort_primitive' '--allow=clippy::single_match_else' '--allow=clippy::similar_names' '--allow=clippy::should_panic_without_expect' '--allow=clippy::return_self_not_must_use' '--allow=clippy::redundant_else' '--allow=clippy::range_plus_one' '--allow=clippy::option_option' '--allow=clippy::no_effect_underscore_binding' '--allow=clippy::needless_raw_string_hashes' '--allow=clippy::needless_pass_by_value' '--allow=clippy::needless_for_each' '--allow=clippy::naive_bytecount' '--allow=clippy::mut_mut' '--allow=clippy::must_use_candidate' '--allow=clippy::module_name_repetitions' '--allow=clippy::missing_panics_doc' '--allow=clippy::missing_errors_doc' '--allow=clippy::match_wildcard_for_single_variants' '--allow=clippy::match_wild_err_arm' '--allow=clippy::match_same_arms' '--allow=clippy::match_bool' '--allow=clippy::many_single_char_names' '--allow=clippy::manual_string_new' '--allow=clippy::manual_let_else' '--allow=clippy::manual_is_variant_and' '--allow=clippy::manual_assert' '--allow=clippy::iter_without_into_iter' '--allow=clippy::iter_not_returning_iterator' '--allow=clippy::items_after_statements' '--allow=clippy::inline_always' '--allow=clippy::inefficient_to_string' '--allow=clippy::inconsistent_struct_constructor' '--allow=clippy::implicit_clone' '--allow=clippy::ignored_unit_patterns' '--allow=clippy::if_not_else' '--allow=clippy::from_iter_instead_of_collect' '--allow=clippy::fn_params_excessive_bools' '--allow=clippy::filter_map_next' '--allow=clippy::explicit_iter_loop' '--allow=clippy::explicit_into_iter_loop' '--allow=clippy::explicit_deref_methods' '--allow=clippy::enum_glob_use' '--allow=clippy::empty_docs' '--allow=clippy::doc_markdown' '--allow=clippy::default_trait_access' '--allow=clippy::copy_iterator' '--allow=clippy::checked_conversions' '--allow=clippy::cast_sign_loss' '--allow=clippy::cast_precision_loss' '--allow=clippy::cast_possible_wrap' '--allow=clippy::cast_possible_truncation' '--allow=clippy::cast_lossless' '--allow=clippy::borrow_as_ptr' '--allow=clippy::bool_to_int_with_if' --test --cfg 'feature="default"' --cfg 'feature="document-features"' --cfg 'feature="tracing"' --cfg 'feature="tracing-detail"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "document-features", "tracing", "tracing-detail"))' -C metadata=b6adfa8f02ae4ae4 -C extra-filename=-b6adfa8f02ae4ae4 --out-dir /tmp/tmp.reWlQcuODl/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.reWlQcuODl/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.reWlQcuODl/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.reWlQcuODl/target/debug/deps --extern document_features=/tmp/tmp.reWlQcuODl/target/debug/deps/libdocument_features-860cdb88bde292f3.so --extern tracing_core=/tmp/tmp.reWlQcuODl/target/s390x-unknown-linux-gnu/debug/deps/libtracing_core-ca78a6f38c53cf68.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-trace-0.1.10=/usr/share/cargo/registry/gix-trace-0.1.10 --remap-path-prefix /tmp/tmp.reWlQcuODl/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 162s warning: `gix-trace` (lib test) generated 1 warning (1 duplicate) 162s Finished `test` profile [unoptimized + debuginfo] target(s) in 1.78s 162s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-trace-0.1.10 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-trace-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='A crate to provide minimal `tracing` support that can be turned off to zero cost' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-trace CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.reWlQcuODl/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.reWlQcuODl/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.reWlQcuODl/target/s390x-unknown-linux-gnu/debug/deps/gix_trace-b6adfa8f02ae4ae4` 162s 162s running 0 tests 162s 162s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 162s 162s /tmp/autopkgtest.4TwsDO/wrapper.sh: checking for leaked background processes... 162s /tmp/autopkgtest.4TwsDO/wrapper.sh: waiting for tee/cat subprocesses... 162s /tmp/autopkgtest.4TwsDO/wrapper.sh: cleaning up... 162s /tmp/autopkgtest.4TwsDO/wrapper.sh: Exit status: 0 162s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest [08:40:50]: test rust-gix-trace:@: -----------------------] 163s autopkgtest: DBG: testbed executing test finished with exit status 0 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/rust-gix-trace%3A%40-stdout /tmp/autopkgtest-work.tue5m9da/out/rust-gix-trace%3A%40-stdout 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/rust-gix-trace%3A%40-stderr /tmp/autopkgtest-work.tue5m9da/out/rust-gix-trace%3A%40-stderr 163s autopkgtest: DBG: got reply from testbed: ok 163s rust-gix-trace:@ PASS 163s autopkgtest [08:40:50]: test rust-gix-trace:@: - - - - - - - - - - results - - - - - - - - - - 163s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/rust-gix-trace%3A%40-artifacts/ /tmp/autopkgtest-work.tue5m9da/out/artifacts/ 163s autopkgtest: DBG: got reply from testbed: ok 163s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4TwsDO/rust-gix-trace:@-artifacts', '/tmp/autopkgtest.4TwsDO/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 163s autopkgtest: DBG: testbed command exited with code 0 163s autopkgtest [08:40:50]: test librust-gix-trace-dev:default: preparing testbed 163s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-gix-trace-dev'], deps_new=['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 163s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 163s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 163s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-gix-trace-dev 163s autopkgtest: DBG: can use apt-get on testbed: True 163s 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-trace-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 164s Reading package lists... 164s Building dependency tree... 164s Reading state information... 164s Starting pkgProblemResolver with broken count: 0 164s Starting 2 pkgProblemResolver with broken count: 0 164s Done 164s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-gix-trace-dev'], kind short, sout pipe, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:default-packages.all"], kind short, sout raw, serr pipe, env [] 164s autopkgtest: DBG: testbed command exited with code 0 164s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Adefault-packages.all /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3Adefault-packages.all 165s autopkgtest: DBG: got reply from testbed: ok 165s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4TwsDO/build.cnS/src'], kind short, sout raw, serr raw, env [] 165s autopkgtest: DBG: testbed command exited with code 0 165s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.4TwsDO/build.cnS/src already exists 165s autopkgtest [08:40:52]: test librust-gix-trace-dev:default: /usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets 165s autopkgtest [08:40:52]: test librust-gix-trace-dev:default: [----------------------- 165s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.4TwsDO/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:default-artifacts --chdir=/tmp/autopkgtest.4TwsDO/build.cnS/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.4TwsDO/librust-gix-trace-dev:default-stderr --stdout=/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:default-stdout --tmp=/tmp/autopkgtest.4TwsDO/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-trace 0.1.10 --all-targets'"], kind test, sout raw, serr raw, env [] 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:default-artifacts 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: changing to directory: /tmp/autopkgtest.4TwsDO/build.cnS/src 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: LANG=C.UTF-8 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LANGUAGE 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_ADDRESS 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_ALL 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_COLLATE 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_CTYPE 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_IDENTIFICATION 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MEASUREMENT 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MESSAGES 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MONETARY 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_NAME 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_NUMERIC 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_PAPER 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_TELEPHONE 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_TIME 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: pretending to be a login shell 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: will write standard error to /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:default-stderr 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: will write stdout to /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:default-stdout 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4TwsDO/autopkgtest_tmp 165s /tmp/autopkgtest.4TwsDO/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 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: copying /tmp/tmp.R60PcTRIbY/out to stdout and file: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:default-stdout 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: copying /tmp/tmp.R60PcTRIbY/err to standard error and file: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:default-stdout 165s /tmp/autopkgtest.4TwsDO/wrapper.sh: writing script pid 2216 to /tmp/autopkgtest_script_pid 165s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 165s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 165s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 165s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.vS2VKO3SXS/registry/ 165s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 165s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 165s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 165s 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'],) {} 165s Compiling gix-trace v0.1.10 (/usr/share/cargo/registry/gix-trace-0.1.10) 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gix_trace CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-trace-0.1.10 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-trace-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='A crate to provide minimal `tracing` support that can be turned off to zero cost' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-trace CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.vS2VKO3SXS/target/debug/deps rustc --crate-name gix_trace --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 '--warn=clippy::pedantic' '--allow=clippy::wildcard_imports' '--allow=clippy::used_underscore_binding' '--allow=clippy::unused_self' '--allow=clippy::unreadable_literal' '--allow=clippy::unnecessary_wraps' '--allow=clippy::unnecessary_join' '--allow=clippy::trivially_copy_pass_by_ref' '--allow=clippy::transmute_ptr_to_ptr' '--allow=clippy::too_many_lines' '--allow=clippy::struct_field_names' '--allow=clippy::struct_excessive_bools' '--allow=clippy::stable_sort_primitive' '--allow=clippy::single_match_else' '--allow=clippy::similar_names' '--allow=clippy::should_panic_without_expect' '--allow=clippy::return_self_not_must_use' '--allow=clippy::redundant_else' '--allow=clippy::range_plus_one' '--allow=clippy::option_option' '--allow=clippy::no_effect_underscore_binding' '--allow=clippy::needless_raw_string_hashes' '--allow=clippy::needless_pass_by_value' '--allow=clippy::needless_for_each' '--allow=clippy::naive_bytecount' '--allow=clippy::mut_mut' '--allow=clippy::must_use_candidate' '--allow=clippy::module_name_repetitions' '--allow=clippy::missing_panics_doc' '--allow=clippy::missing_errors_doc' '--allow=clippy::match_wildcard_for_single_variants' '--allow=clippy::match_wild_err_arm' '--allow=clippy::match_same_arms' '--allow=clippy::match_bool' '--allow=clippy::many_single_char_names' '--allow=clippy::manual_string_new' '--allow=clippy::manual_let_else' '--allow=clippy::manual_is_variant_and' '--allow=clippy::manual_assert' '--allow=clippy::iter_without_into_iter' '--allow=clippy::iter_not_returning_iterator' '--allow=clippy::items_after_statements' '--allow=clippy::inline_always' '--allow=clippy::inefficient_to_string' '--allow=clippy::inconsistent_struct_constructor' '--allow=clippy::implicit_clone' '--allow=clippy::ignored_unit_patterns' '--allow=clippy::if_not_else' '--allow=clippy::from_iter_instead_of_collect' '--allow=clippy::fn_params_excessive_bools' '--allow=clippy::filter_map_next' '--allow=clippy::explicit_iter_loop' '--allow=clippy::explicit_into_iter_loop' '--allow=clippy::explicit_deref_methods' '--allow=clippy::enum_glob_use' '--allow=clippy::empty_docs' '--allow=clippy::doc_markdown' '--allow=clippy::default_trait_access' '--allow=clippy::copy_iterator' '--allow=clippy::checked_conversions' '--allow=clippy::cast_sign_loss' '--allow=clippy::cast_precision_loss' '--allow=clippy::cast_possible_wrap' '--allow=clippy::cast_possible_truncation' '--allow=clippy::cast_lossless' '--allow=clippy::borrow_as_ptr' '--allow=clippy::bool_to_int_with_if' --test --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "document-features", "tracing", "tracing-detail"))' -C metadata=45f7d8f8f18351cf -C extra-filename=-45f7d8f8f18351cf --out-dir /tmp/tmp.vS2VKO3SXS/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.vS2VKO3SXS/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.vS2VKO3SXS/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.vS2VKO3SXS/target/debug/deps -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-trace-0.1.10=/usr/share/cargo/registry/gix-trace-0.1.10 --remap-path-prefix /tmp/tmp.vS2VKO3SXS/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 165s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 165s | 165s = note: this feature is not stably supported; its behavior can change in the future 165s 166s warning: `gix-trace` (lib test) generated 1 warning 166s Finished `test` profile [unoptimized + debuginfo] target(s) in 0.42s 166s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-trace-0.1.10 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-trace-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='A crate to provide minimal `tracing` support that can be turned off to zero cost' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-trace CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.vS2VKO3SXS/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.vS2VKO3SXS/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.vS2VKO3SXS/target/s390x-unknown-linux-gnu/debug/deps/gix_trace-45f7d8f8f18351cf` 166s 166s running 0 tests 166s 166s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 166s 166s /tmp/autopkgtest.4TwsDO/wrapper.sh: checking for leaked background processes... 166s /tmp/autopkgtest.4TwsDO/wrapper.sh: waiting for tee/cat subprocesses... 166s /tmp/autopkgtest.4TwsDO/wrapper.sh: cleaning up... 166s /tmp/autopkgtest.4TwsDO/wrapper.sh: Exit status: 0 166s autopkgtest: DBG: testbed command exited with code 0 166s autopkgtest [08:40:53]: test librust-gix-trace-dev:default: -----------------------] 166s autopkgtest: DBG: testbed executing test finished with exit status 0 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Adefault-stdout /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3Adefault-stdout 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Adefault-stderr /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3Adefault-stderr 166s autopkgtest: DBG: got reply from testbed: ok 166s librust-gix-trace-dev:default PASS 166s autopkgtest [08:40:53]: test librust-gix-trace-dev:default: - - - - - - - - - - results - - - - - - - - - - 166s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Adefault-artifacts/ /tmp/autopkgtest-work.tue5m9da/out/artifacts/ 166s autopkgtest: DBG: got reply from testbed: ok 166s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:default-artifacts', '/tmp/autopkgtest.4TwsDO/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest [08:40:54]: test librust-gix-trace-dev:document-features: preparing testbed 167s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-gix-trace-dev'], deps_new=['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 167s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 167s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 167s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-gix-trace-dev 167s autopkgtest: DBG: can use apt-get on testbed: True 167s 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-trace-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 167s Reading package lists... 167s Building dependency tree... 167s Reading state information... 167s Starting pkgProblemResolver with broken count: 0 167s Starting 2 pkgProblemResolver with broken count: 0 167s Done 167s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-gix-trace-dev'], kind short, sout pipe, serr pipe, env [] 167s autopkgtest: DBG: testbed command exited with code 0 167s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:document-features-packages.all"], kind short, sout raw, serr pipe, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Adocument-features-packages.all /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3Adocument-features-packages.all 168s autopkgtest: DBG: got reply from testbed: ok 168s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4TwsDO/build.cnS/src'], kind short, sout raw, serr raw, env [] 168s autopkgtest: DBG: testbed command exited with code 0 168s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.4TwsDO/build.cnS/src already exists 168s autopkgtest [08:40:55]: test librust-gix-trace-dev:document-features: /usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features --features document-features 168s autopkgtest [08:40:55]: test librust-gix-trace-dev:document-features: [----------------------- 168s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.4TwsDO/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:document-features-artifacts --chdir=/tmp/autopkgtest.4TwsDO/build.cnS/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.4TwsDO/librust-gix-trace-dev:document-features-stderr --stdout=/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:document-features-stdout --tmp=/tmp/autopkgtest.4TwsDO/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-trace 0.1.10 --all-targets --no-default-features --features document-features'"], kind test, sout raw, serr raw, env [] 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:document-features-artifacts 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: changing to directory: /tmp/autopkgtest.4TwsDO/build.cnS/src 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: LANG=C.UTF-8 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LANGUAGE 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_ADDRESS 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_ALL 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_COLLATE 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_CTYPE 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_IDENTIFICATION 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MEASUREMENT 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MESSAGES 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MONETARY 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_NAME 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_NUMERIC 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_PAPER 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_TELEPHONE 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_TIME 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: pretending to be a login shell 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: will write standard error to /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:document-features-stderr 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: will write stdout to /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:document-features-stdout 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4TwsDO/autopkgtest_tmp 168s /tmp/autopkgtest.4TwsDO/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 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features --features document-features 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: copying /tmp/tmp.5SRHTWBMin/out to stdout and file: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:document-features-stdout 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: copying /tmp/tmp.5SRHTWBMin/err to standard error and file: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:document-features-stdout 168s /tmp/autopkgtest.4TwsDO/wrapper.sh: writing script pid 2406 to /tmp/autopkgtest_script_pid 168s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 168s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 168s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 168s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.48brLL0Tl1/registry/ 168s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 168s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 168s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 168s 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', '--features', 'document-features'],) {} 168s Compiling litrs v0.4.0 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=litrs CARGO_MANIFEST_DIR=/tmp/tmp.48brLL0Tl1/registry/litrs-0.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.48brLL0Tl1/registry/litrs-0.4.0/Cargo.toml CARGO_PKG_AUTHORS='Lukas Kalbertodt ' CARGO_PKG_DESCRIPTION='Parse and inspect Rust literals (i.e. tokens in the Rust programming language 168s representing fixed values). Particularly useful for proc macros, but can also 168s be used outside of a proc-macro context. 168s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=litrs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/LukasKalbertodt/litrs/' CARGO_PKG_RUST_VERSION=1.54 CARGO_PKG_VERSION=0.4.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.48brLL0Tl1/target/debug/deps rustc --crate-name litrs --edition=2018 /tmp/tmp.48brLL0Tl1/registry/litrs-0.4.0/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("check_suffix", "default", "proc-macro2", "unicode-xid"))' -C metadata=7e342af424c8557e -C extra-filename=-7e342af424c8557e --out-dir /tmp/tmp.48brLL0Tl1/target/debug/deps -L dependency=/tmp/tmp.48brLL0Tl1/target/debug/deps --cap-lints warn` 169s Compiling document-features v0.2.7 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=document_features CARGO_MANIFEST_DIR=/tmp/tmp.48brLL0Tl1/registry/document-features-0.2.7 CARGO_MANIFEST_PATH=/tmp/tmp.48brLL0Tl1/registry/document-features-0.2.7/Cargo.toml CARGO_PKG_AUTHORS='Slint Developers ' CARGO_PKG_DESCRIPTION='Extract documentation for the feature flags from comments in Cargo.toml' CARGO_PKG_HOMEPAGE='https://slint-ui.com' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=document-features CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/slint-ui/document-features' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.48brLL0Tl1/target/debug/deps rustc --crate-name document_features --edition=2018 /tmp/tmp.48brLL0Tl1/registry/document-features-0.2.7/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 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "self-test"))' -C metadata=860cdb88bde292f3 -C extra-filename=-860cdb88bde292f3 --out-dir /tmp/tmp.48brLL0Tl1/target/debug/deps -L dependency=/tmp/tmp.48brLL0Tl1/target/debug/deps --extern litrs=/tmp/tmp.48brLL0Tl1/target/debug/deps/liblitrs-7e342af424c8557e.rlib --extern proc_macro --cap-lints warn` 169s warning: cannot find macro `self_test` in this scope 169s --> /tmp/tmp.48brLL0Tl1/registry/document-features-0.2.7/lib.rs:46:10 169s | 169s 46 | #![doc = self_test!(/** 169s | ^^^^^^^^^ 169s | 169s = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! 169s = note: for more information, see issue #124535 169s = help: import `macro_rules` with `use` to make it callable above its definition 169s = note: `#[warn(out_of_scope_macro_calls)]` on by default 169s 169s warning: `document-features` (lib) generated 1 warning 169s Compiling gix-trace v0.1.10 (/usr/share/cargo/registry/gix-trace-0.1.10) 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gix_trace CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-trace-0.1.10 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-trace-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='A crate to provide minimal `tracing` support that can be turned off to zero cost' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-trace CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.48brLL0Tl1/target/debug/deps rustc --crate-name gix_trace --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 '--warn=clippy::pedantic' '--allow=clippy::wildcard_imports' '--allow=clippy::used_underscore_binding' '--allow=clippy::unused_self' '--allow=clippy::unreadable_literal' '--allow=clippy::unnecessary_wraps' '--allow=clippy::unnecessary_join' '--allow=clippy::trivially_copy_pass_by_ref' '--allow=clippy::transmute_ptr_to_ptr' '--allow=clippy::too_many_lines' '--allow=clippy::struct_field_names' '--allow=clippy::struct_excessive_bools' '--allow=clippy::stable_sort_primitive' '--allow=clippy::single_match_else' '--allow=clippy::similar_names' '--allow=clippy::should_panic_without_expect' '--allow=clippy::return_self_not_must_use' '--allow=clippy::redundant_else' '--allow=clippy::range_plus_one' '--allow=clippy::option_option' '--allow=clippy::no_effect_underscore_binding' '--allow=clippy::needless_raw_string_hashes' '--allow=clippy::needless_pass_by_value' '--allow=clippy::needless_for_each' '--allow=clippy::naive_bytecount' '--allow=clippy::mut_mut' '--allow=clippy::must_use_candidate' '--allow=clippy::module_name_repetitions' '--allow=clippy::missing_panics_doc' '--allow=clippy::missing_errors_doc' '--allow=clippy::match_wildcard_for_single_variants' '--allow=clippy::match_wild_err_arm' '--allow=clippy::match_same_arms' '--allow=clippy::match_bool' '--allow=clippy::many_single_char_names' '--allow=clippy::manual_string_new' '--allow=clippy::manual_let_else' '--allow=clippy::manual_is_variant_and' '--allow=clippy::manual_assert' '--allow=clippy::iter_without_into_iter' '--allow=clippy::iter_not_returning_iterator' '--allow=clippy::items_after_statements' '--allow=clippy::inline_always' '--allow=clippy::inefficient_to_string' '--allow=clippy::inconsistent_struct_constructor' '--allow=clippy::implicit_clone' '--allow=clippy::ignored_unit_patterns' '--allow=clippy::if_not_else' '--allow=clippy::from_iter_instead_of_collect' '--allow=clippy::fn_params_excessive_bools' '--allow=clippy::filter_map_next' '--allow=clippy::explicit_iter_loop' '--allow=clippy::explicit_into_iter_loop' '--allow=clippy::explicit_deref_methods' '--allow=clippy::enum_glob_use' '--allow=clippy::empty_docs' '--allow=clippy::doc_markdown' '--allow=clippy::default_trait_access' '--allow=clippy::copy_iterator' '--allow=clippy::checked_conversions' '--allow=clippy::cast_sign_loss' '--allow=clippy::cast_precision_loss' '--allow=clippy::cast_possible_wrap' '--allow=clippy::cast_possible_truncation' '--allow=clippy::cast_lossless' '--allow=clippy::borrow_as_ptr' '--allow=clippy::bool_to_int_with_if' --test --cfg 'feature="document-features"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "document-features", "tracing", "tracing-detail"))' -C metadata=b6e5179c46f3e749 -C extra-filename=-b6e5179c46f3e749 --out-dir /tmp/tmp.48brLL0Tl1/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.48brLL0Tl1/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.48brLL0Tl1/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.48brLL0Tl1/target/debug/deps --extern document_features=/tmp/tmp.48brLL0Tl1/target/debug/deps/libdocument_features-860cdb88bde292f3.so -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-trace-0.1.10=/usr/share/cargo/registry/gix-trace-0.1.10 --remap-path-prefix /tmp/tmp.48brLL0Tl1/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 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 170s warning: `gix-trace` (lib test) generated 1 warning 170s Finished `test` profile [unoptimized + debuginfo] target(s) in 1.43s 170s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-trace-0.1.10 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-trace-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='A crate to provide minimal `tracing` support that can be turned off to zero cost' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-trace CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.48brLL0Tl1/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.48brLL0Tl1/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.48brLL0Tl1/target/s390x-unknown-linux-gnu/debug/deps/gix_trace-b6e5179c46f3e749` 170s 170s running 0 tests 170s 170s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 170s 170s /tmp/autopkgtest.4TwsDO/wrapper.sh: checking for leaked background processes... 170s /tmp/autopkgtest.4TwsDO/wrapper.sh: waiting for tee/cat subprocesses... 170s /tmp/autopkgtest.4TwsDO/wrapper.sh: cleaning up... 170s /tmp/autopkgtest.4TwsDO/wrapper.sh: Exit status: 0 170s autopkgtest: DBG: testbed command exited with code 0 170s autopkgtest [08:40:57]: test librust-gix-trace-dev:document-features: -----------------------] 170s autopkgtest: DBG: testbed executing test finished with exit status 0 170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Adocument-features-stdout /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3Adocument-features-stdout 170s autopkgtest: DBG: got reply from testbed: ok 170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Adocument-features-stderr /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3Adocument-features-stderr 170s autopkgtest: DBG: got reply from testbed: ok 170s autopkgtest [08:40:57]: test librust-gix-trace-dev:document-features: - - - - - - - - - - results - - - - - - - - - - 170s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Adocument-features-artifacts/ /tmp/autopkgtest-work.tue5m9da/out/artifacts/ 170s librust-gix-trace-dev:document-features PASS 171s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:document-features-artifacts', '/tmp/autopkgtest.4TwsDO/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest [08:40:58]: test librust-gix-trace-dev:tracing: preparing testbed 171s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-gix-trace-dev'], deps_new=['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 171s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 171s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 171s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-gix-trace-dev 171s autopkgtest: DBG: can use apt-get on testbed: True 171s 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-trace-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 171s Reading package lists... 171s Building dependency tree... 171s Reading state information... 171s Starting pkgProblemResolver with broken count: 0 171s Starting 2 pkgProblemResolver with broken count: 0 171s Done 172s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-gix-trace-dev'], kind short, sout pipe, serr pipe, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-packages.all"], kind short, sout raw, serr pipe, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Atracing-packages.all /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3Atracing-packages.all 172s autopkgtest: DBG: got reply from testbed: ok 172s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4TwsDO/build.cnS/src'], kind short, sout raw, serr raw, env [] 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.4TwsDO/build.cnS/src already exists 172s autopkgtest [08:40:59]: test librust-gix-trace-dev:tracing: /usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features --features tracing 172s autopkgtest [08:40:59]: test librust-gix-trace-dev:tracing: [----------------------- 172s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.4TwsDO/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-artifacts --chdir=/tmp/autopkgtest.4TwsDO/build.cnS/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.4TwsDO/librust-gix-trace-dev:tracing-stderr --stdout=/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-stdout --tmp=/tmp/autopkgtest.4TwsDO/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-trace 0.1.10 --all-targets --no-default-features --features tracing'"], kind test, sout raw, serr raw, env [] 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-artifacts 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: changing to directory: /tmp/autopkgtest.4TwsDO/build.cnS/src 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: LANG=C.UTF-8 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LANGUAGE 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_ADDRESS 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_ALL 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_COLLATE 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_CTYPE 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_IDENTIFICATION 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MEASUREMENT 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MESSAGES 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MONETARY 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_NAME 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_NUMERIC 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_PAPER 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_TELEPHONE 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_TIME 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: pretending to be a login shell 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: will write standard error to /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-stderr 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: will write stdout to /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-stdout 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4TwsDO/autopkgtest_tmp 173s /tmp/autopkgtest.4TwsDO/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 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features --features tracing 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: copying /tmp/tmp.1NXst2wuGb/out to stdout and file: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-stdout 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: copying /tmp/tmp.1NXst2wuGb/err to standard error and file: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-stdout 173s /tmp/autopkgtest.4TwsDO/wrapper.sh: writing script pid 2622 to /tmp/autopkgtest_script_pid 173s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 173s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 173s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 173s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.fzqM6XauIC/registry/ 173s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 173s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 173s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 173s 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', '--features', 'tracing'],) {} 173s Compiling once_cell v1.20.2 173s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.fzqM6XauIC/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.fzqM6XauIC/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.fzqM6XauIC/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.fzqM6XauIC/registry/once_cell-1.20.2/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="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.fzqM6XauIC/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.fzqM6XauIC/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.fzqM6XauIC/target/debug/deps --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-trace-0.1.10=/usr/share/cargo/registry/gix-trace-0.1.10 --remap-path-prefix /tmp/tmp.fzqM6XauIC/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 173s Compiling tracing-core v0.1.32 173s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/tmp/tmp.fzqM6XauIC/registry/tracing-core-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.fzqM6XauIC/registry/tracing-core-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing. 173s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.1.32 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.fzqM6XauIC/target/debug/deps rustc --crate-name tracing_core --edition=2018 /tmp/tmp.fzqM6XauIC/registry/tracing-core-0.1.32/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="once_cell"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "once_cell", "std", "valuable"))' -C metadata=ca78a6f38c53cf68 -C extra-filename=-ca78a6f38c53cf68 --out-dir /tmp/tmp.fzqM6XauIC/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.fzqM6XauIC/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.fzqM6XauIC/target/debug/deps --extern once_cell=/tmp/tmp.fzqM6XauIC/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --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-trace-0.1.10=/usr/share/cargo/registry/gix-trace-0.1.10 --remap-path-prefix /tmp/tmp.fzqM6XauIC/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 173s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 173s | 173s = note: this feature is not stably supported; its behavior can change in the future 173s 173s warning: `once_cell` (lib) generated 1 warning 173s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 173s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/lib.rs:138:5 173s | 173s 138 | private_in_public, 173s | ^^^^^^^^^^^^^^^^^ 173s | 173s = note: `#[warn(renamed_and_removed_lints)]` on by default 173s 173s warning: unexpected `cfg` condition value: `alloc` 173s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:147:7 173s | 173s 147 | #[cfg(feature = "alloc")] 173s | ^^^^^^^^^^^^^^^^^ 173s | 173s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 173s = help: consider adding `alloc` as a feature in `Cargo.toml` 173s = note: see for more information about checking conditional configuration 173s = note: `#[warn(unexpected_cfgs)]` on by default 173s 173s warning: unexpected `cfg` condition value: `alloc` 173s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:150:7 173s | 173s 150 | #[cfg(feature = "alloc")] 173s | ^^^^^^^^^^^^^^^^^ 173s | 173s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 173s = help: consider adding `alloc` as a feature in `Cargo.toml` 173s = note: see for more information about checking conditional configuration 173s 173s warning: unexpected `cfg` condition name: `tracing_unstable` 173s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:374:11 173s | 173s 374 | #[cfg(all(tracing_unstable, feature = "valuable"))] 173s | ^^^^^^^^^^^^^^^^ 173s | 173s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 173s = help: consider using a Cargo feature instead 173s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 173s [lints.rust] 173s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 173s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 173s = note: see for more information about checking conditional configuration 173s 173s warning: unexpected `cfg` condition name: `tracing_unstable` 173s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:719:11 173s | 173s 719 | #[cfg(all(tracing_unstable, feature = "valuable"))] 173s | ^^^^^^^^^^^^^^^^ 173s | 173s = help: consider using a Cargo feature instead 173s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 173s [lints.rust] 173s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 173s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 173s = note: see for more information about checking conditional configuration 173s 173s warning: unexpected `cfg` condition name: `tracing_unstable` 173s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:722:11 173s | 173s 722 | #[cfg(all(tracing_unstable, feature = "valuable"))] 173s | ^^^^^^^^^^^^^^^^ 173s | 173s = help: consider using a Cargo feature instead 173s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 173s [lints.rust] 173s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 173s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 173s = note: see for more information about checking conditional configuration 173s 173s warning: unexpected `cfg` condition name: `tracing_unstable` 173s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:730:11 173s | 173s 730 | #[cfg(all(tracing_unstable, feature = "valuable"))] 173s | ^^^^^^^^^^^^^^^^ 173s | 173s = help: consider using a Cargo feature instead 173s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 173s [lints.rust] 173s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 173s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 173s = note: see for more information about checking conditional configuration 173s 173s warning: unexpected `cfg` condition name: `tracing_unstable` 173s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:733:11 173s | 173s 733 | #[cfg(all(tracing_unstable, feature = "valuable"))] 173s | ^^^^^^^^^^^^^^^^ 173s | 173s = help: consider using a Cargo feature instead 173s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 173s [lints.rust] 173s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 173s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 173s = note: see for more information about checking conditional configuration 173s 173s warning: unexpected `cfg` condition name: `tracing_unstable` 173s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:270:15 173s | 173s 270 | #[cfg(all(tracing_unstable, feature = "valuable"))] 173s | ^^^^^^^^^^^^^^^^ 173s | 173s = help: consider using a Cargo feature instead 173s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 173s [lints.rust] 173s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 173s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 173s = note: see for more information about checking conditional configuration 173s 173s warning: creating a shared reference to mutable static is discouraged 173s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:458:9 173s | 173s 458 | &GLOBAL_DISPATCH 173s | ^^^^^^^^^^^^^^^^ shared reference to mutable static 173s | 173s = note: for more information, see 173s = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives 173s = note: `#[warn(static_mut_refs)]` on by default 173s help: use `&raw const` instead to create a raw pointer 173s | 173s 458 | &raw const GLOBAL_DISPATCH 173s | ~~~~~~~~~~ 173s 173s warning: `tracing-core` (lib) generated 11 warnings (1 duplicate) 173s Compiling gix-trace v0.1.10 (/usr/share/cargo/registry/gix-trace-0.1.10) 173s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gix_trace CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-trace-0.1.10 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-trace-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='A crate to provide minimal `tracing` support that can be turned off to zero cost' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-trace CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.fzqM6XauIC/target/debug/deps rustc --crate-name gix_trace --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 '--warn=clippy::pedantic' '--allow=clippy::wildcard_imports' '--allow=clippy::used_underscore_binding' '--allow=clippy::unused_self' '--allow=clippy::unreadable_literal' '--allow=clippy::unnecessary_wraps' '--allow=clippy::unnecessary_join' '--allow=clippy::trivially_copy_pass_by_ref' '--allow=clippy::transmute_ptr_to_ptr' '--allow=clippy::too_many_lines' '--allow=clippy::struct_field_names' '--allow=clippy::struct_excessive_bools' '--allow=clippy::stable_sort_primitive' '--allow=clippy::single_match_else' '--allow=clippy::similar_names' '--allow=clippy::should_panic_without_expect' '--allow=clippy::return_self_not_must_use' '--allow=clippy::redundant_else' '--allow=clippy::range_plus_one' '--allow=clippy::option_option' '--allow=clippy::no_effect_underscore_binding' '--allow=clippy::needless_raw_string_hashes' '--allow=clippy::needless_pass_by_value' '--allow=clippy::needless_for_each' '--allow=clippy::naive_bytecount' '--allow=clippy::mut_mut' '--allow=clippy::must_use_candidate' '--allow=clippy::module_name_repetitions' '--allow=clippy::missing_panics_doc' '--allow=clippy::missing_errors_doc' '--allow=clippy::match_wildcard_for_single_variants' '--allow=clippy::match_wild_err_arm' '--allow=clippy::match_same_arms' '--allow=clippy::match_bool' '--allow=clippy::many_single_char_names' '--allow=clippy::manual_string_new' '--allow=clippy::manual_let_else' '--allow=clippy::manual_is_variant_and' '--allow=clippy::manual_assert' '--allow=clippy::iter_without_into_iter' '--allow=clippy::iter_not_returning_iterator' '--allow=clippy::items_after_statements' '--allow=clippy::inline_always' '--allow=clippy::inefficient_to_string' '--allow=clippy::inconsistent_struct_constructor' '--allow=clippy::implicit_clone' '--allow=clippy::ignored_unit_patterns' '--allow=clippy::if_not_else' '--allow=clippy::from_iter_instead_of_collect' '--allow=clippy::fn_params_excessive_bools' '--allow=clippy::filter_map_next' '--allow=clippy::explicit_iter_loop' '--allow=clippy::explicit_into_iter_loop' '--allow=clippy::explicit_deref_methods' '--allow=clippy::enum_glob_use' '--allow=clippy::empty_docs' '--allow=clippy::doc_markdown' '--allow=clippy::default_trait_access' '--allow=clippy::copy_iterator' '--allow=clippy::checked_conversions' '--allow=clippy::cast_sign_loss' '--allow=clippy::cast_precision_loss' '--allow=clippy::cast_possible_wrap' '--allow=clippy::cast_possible_truncation' '--allow=clippy::cast_lossless' '--allow=clippy::borrow_as_ptr' '--allow=clippy::bool_to_int_with_if' --test --cfg 'feature="tracing"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "document-features", "tracing", "tracing-detail"))' -C metadata=8662f05f9758de82 -C extra-filename=-8662f05f9758de82 --out-dir /tmp/tmp.fzqM6XauIC/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.fzqM6XauIC/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.fzqM6XauIC/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.fzqM6XauIC/target/debug/deps --extern tracing_core=/tmp/tmp.fzqM6XauIC/target/s390x-unknown-linux-gnu/debug/deps/libtracing_core-ca78a6f38c53cf68.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-trace-0.1.10=/usr/share/cargo/registry/gix-trace-0.1.10 --remap-path-prefix /tmp/tmp.fzqM6XauIC/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 174s warning: `gix-trace` (lib test) generated 1 warning (1 duplicate) 174s Finished `test` profile [unoptimized + debuginfo] target(s) in 1.02s 174s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-trace-0.1.10 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-trace-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='A crate to provide minimal `tracing` support that can be turned off to zero cost' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-trace CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.fzqM6XauIC/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.fzqM6XauIC/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.fzqM6XauIC/target/s390x-unknown-linux-gnu/debug/deps/gix_trace-8662f05f9758de82` 174s 174s running 0 tests 174s 174s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 174s 174s /tmp/autopkgtest.4TwsDO/wrapper.sh: checking for leaked background processes... 174s /tmp/autopkgtest.4TwsDO/wrapper.sh: waiting for tee/cat subprocesses... 174s /tmp/autopkgtest.4TwsDO/wrapper.sh: cleaning up... 174s /tmp/autopkgtest.4TwsDO/wrapper.sh: Exit status: 0 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest [08:41:01]: test librust-gix-trace-dev:tracing: -----------------------] 174s autopkgtest: DBG: testbed executing test finished with exit status 0 174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Atracing-stdout /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3Atracing-stdout 174s autopkgtest: DBG: got reply from testbed: ok 174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Atracing-stderr /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3Atracing-stderr 174s autopkgtest: DBG: got reply from testbed: ok 175s autopkgtest [08:41:02]: test librust-gix-trace-dev:tracing: - - - - - - - - - - results - - - - - - - - - - 175s librust-gix-trace-dev:tracing PASS 175s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Atracing-artifacts/ /tmp/autopkgtest-work.tue5m9da/out/artifacts/ 175s autopkgtest: DBG: got reply from testbed: ok 175s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-artifacts', '/tmp/autopkgtest.4TwsDO/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest [08:41:02]: test librust-gix-trace-dev:tracing-detail: preparing testbed 175s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-gix-trace-dev'], deps_new=['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 175s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 175s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 175s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-gix-trace-dev 175s autopkgtest: DBG: can use apt-get on testbed: True 175s 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-trace-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 175s Reading package lists... 175s Building dependency tree... 175s Reading state information... 175s Starting pkgProblemResolver with broken count: 0 175s Starting 2 pkgProblemResolver with broken count: 0 175s Done 176s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-gix-trace-dev'], kind short, sout pipe, serr pipe, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-detail-packages.all"], kind short, sout raw, serr pipe, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Atracing-detail-packages.all /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3Atracing-detail-packages.all 176s autopkgtest: DBG: got reply from testbed: ok 176s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4TwsDO/build.cnS/src'], kind short, sout raw, serr raw, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.4TwsDO/build.cnS/src already exists 176s autopkgtest [08:41:03]: test librust-gix-trace-dev:tracing-detail: /usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features --features tracing-detail 176s autopkgtest [08:41:03]: test librust-gix-trace-dev:tracing-detail: [----------------------- 176s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.4TwsDO/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-detail-artifacts --chdir=/tmp/autopkgtest.4TwsDO/build.cnS/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.4TwsDO/librust-gix-trace-dev:tracing-detail-stderr --stdout=/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-detail-stdout --tmp=/tmp/autopkgtest.4TwsDO/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-trace 0.1.10 --all-targets --no-default-features --features tracing-detail'"], kind test, sout raw, serr raw, env [] 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-detail-artifacts 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: changing to directory: /tmp/autopkgtest.4TwsDO/build.cnS/src 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: LANG=C.UTF-8 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LANGUAGE 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_ADDRESS 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_ALL 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_COLLATE 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_CTYPE 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_IDENTIFICATION 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MEASUREMENT 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MESSAGES 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MONETARY 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_NAME 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_NUMERIC 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_PAPER 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_TELEPHONE 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_TIME 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: pretending to be a login shell 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: will write standard error to /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-detail-stderr 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: will write stdout to /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-detail-stdout 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4TwsDO/autopkgtest_tmp 177s /tmp/autopkgtest.4TwsDO/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 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features --features tracing-detail 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: copying /tmp/tmp.mIILzmrGHX/out to stdout and file: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-detail-stdout 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: copying /tmp/tmp.mIILzmrGHX/err to standard error and file: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-detail-stdout 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: writing script pid 2829 to /tmp/autopkgtest_script_pid 177s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 177s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 177s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 177s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.EG3Houswhv/registry/ 177s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 177s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 177s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 177s 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', '--features', 'tracing-detail'],) {} 177s Compiling gix-trace v0.1.10 (/usr/share/cargo/registry/gix-trace-0.1.10) 177s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gix_trace CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-trace-0.1.10 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-trace-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='A crate to provide minimal `tracing` support that can be turned off to zero cost' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-trace CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.EG3Houswhv/target/debug/deps rustc --crate-name gix_trace --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 '--warn=clippy::pedantic' '--allow=clippy::wildcard_imports' '--allow=clippy::used_underscore_binding' '--allow=clippy::unused_self' '--allow=clippy::unreadable_literal' '--allow=clippy::unnecessary_wraps' '--allow=clippy::unnecessary_join' '--allow=clippy::trivially_copy_pass_by_ref' '--allow=clippy::transmute_ptr_to_ptr' '--allow=clippy::too_many_lines' '--allow=clippy::struct_field_names' '--allow=clippy::struct_excessive_bools' '--allow=clippy::stable_sort_primitive' '--allow=clippy::single_match_else' '--allow=clippy::similar_names' '--allow=clippy::should_panic_without_expect' '--allow=clippy::return_self_not_must_use' '--allow=clippy::redundant_else' '--allow=clippy::range_plus_one' '--allow=clippy::option_option' '--allow=clippy::no_effect_underscore_binding' '--allow=clippy::needless_raw_string_hashes' '--allow=clippy::needless_pass_by_value' '--allow=clippy::needless_for_each' '--allow=clippy::naive_bytecount' '--allow=clippy::mut_mut' '--allow=clippy::must_use_candidate' '--allow=clippy::module_name_repetitions' '--allow=clippy::missing_panics_doc' '--allow=clippy::missing_errors_doc' '--allow=clippy::match_wildcard_for_single_variants' '--allow=clippy::match_wild_err_arm' '--allow=clippy::match_same_arms' '--allow=clippy::match_bool' '--allow=clippy::many_single_char_names' '--allow=clippy::manual_string_new' '--allow=clippy::manual_let_else' '--allow=clippy::manual_is_variant_and' '--allow=clippy::manual_assert' '--allow=clippy::iter_without_into_iter' '--allow=clippy::iter_not_returning_iterator' '--allow=clippy::items_after_statements' '--allow=clippy::inline_always' '--allow=clippy::inefficient_to_string' '--allow=clippy::inconsistent_struct_constructor' '--allow=clippy::implicit_clone' '--allow=clippy::ignored_unit_patterns' '--allow=clippy::if_not_else' '--allow=clippy::from_iter_instead_of_collect' '--allow=clippy::fn_params_excessive_bools' '--allow=clippy::filter_map_next' '--allow=clippy::explicit_iter_loop' '--allow=clippy::explicit_into_iter_loop' '--allow=clippy::explicit_deref_methods' '--allow=clippy::enum_glob_use' '--allow=clippy::empty_docs' '--allow=clippy::doc_markdown' '--allow=clippy::default_trait_access' '--allow=clippy::copy_iterator' '--allow=clippy::checked_conversions' '--allow=clippy::cast_sign_loss' '--allow=clippy::cast_precision_loss' '--allow=clippy::cast_possible_wrap' '--allow=clippy::cast_possible_truncation' '--allow=clippy::cast_lossless' '--allow=clippy::borrow_as_ptr' '--allow=clippy::bool_to_int_with_if' --test --cfg 'feature="tracing-detail"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "document-features", "tracing", "tracing-detail"))' -C metadata=5912d5cdeb1a7e80 -C extra-filename=-5912d5cdeb1a7e80 --out-dir /tmp/tmp.EG3Houswhv/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.EG3Houswhv/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.EG3Houswhv/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.EG3Houswhv/target/debug/deps -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-trace-0.1.10=/usr/share/cargo/registry/gix-trace-0.1.10 --remap-path-prefix /tmp/tmp.EG3Houswhv/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 177s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 177s | 177s = note: this feature is not stably supported; its behavior can change in the future 177s 177s warning: `gix-trace` (lib test) generated 1 warning 177s Finished `test` profile [unoptimized + debuginfo] target(s) in 0.41s 177s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-trace-0.1.10 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-trace-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='A crate to provide minimal `tracing` support that can be turned off to zero cost' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-trace CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.EG3Houswhv/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.EG3Houswhv/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.EG3Houswhv/target/s390x-unknown-linux-gnu/debug/deps/gix_trace-5912d5cdeb1a7e80` 177s 177s running 0 tests 177s 177s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 177s 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: checking for leaked background processes... 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: waiting for tee/cat subprocesses... 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: cleaning up... 177s /tmp/autopkgtest.4TwsDO/wrapper.sh: Exit status: 0 177s autopkgtest: DBG: testbed command exited with code 0 178s autopkgtest [08:41:05]: test librust-gix-trace-dev:tracing-detail: -----------------------] 178s autopkgtest: DBG: testbed executing test finished with exit status 0 178s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Atracing-detail-stdout /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3Atracing-detail-stdout 178s autopkgtest: DBG: got reply from testbed: ok 178s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Atracing-detail-stderr /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3Atracing-detail-stderr 178s autopkgtest: DBG: got reply from testbed: ok 178s autopkgtest [08:41:05]: test librust-gix-trace-dev:tracing-detail: - - - - - - - - - - results - - - - - - - - - - 178s librust-gix-trace-dev:tracing-detail PASS 178s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3Atracing-detail-artifacts/ /tmp/autopkgtest-work.tue5m9da/out/artifacts/ 178s autopkgtest: DBG: got reply from testbed: ok 178s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:tracing-detail-artifacts', '/tmp/autopkgtest.4TwsDO/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 178s autopkgtest: DBG: testbed command exited with code 0 178s autopkgtest [08:41:05]: test librust-gix-trace-dev:: preparing testbed 178s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-gix-trace-dev'], deps_new=['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 178s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 178s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-gix-trace-dev'] 178s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-gix-trace-dev 178s autopkgtest: DBG: can use apt-get on testbed: True 178s 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-trace-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 179s Reading package lists... 179s Building dependency tree... 179s Reading state information... 179s Starting pkgProblemResolver with broken count: 0 179s Starting 2 pkgProblemResolver with broken count: 0 179s Done 179s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 179s autopkgtest: DBG: testbed command exited with code 0 179s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-gix-trace-dev'], kind short, sout pipe, serr pipe, env [] 179s autopkgtest: DBG: testbed command exited with code 0 179s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:-packages.all"], kind short, sout raw, serr pipe, env [] 180s autopkgtest: DBG: testbed command exited with code 0 180s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3A-packages.all /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3A-packages.all 180s autopkgtest: DBG: got reply from testbed: ok 180s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4TwsDO/build.cnS/src'], kind short, sout raw, serr raw, env [] 180s autopkgtest: DBG: testbed command exited with code 0 180s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.4TwsDO/build.cnS/src already exists 180s autopkgtest [08:41:07]: test librust-gix-trace-dev:: /usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features 180s autopkgtest [08:41:07]: test librust-gix-trace-dev:: [----------------------- 180s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.4TwsDO/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:-artifacts --chdir=/tmp/autopkgtest.4TwsDO/build.cnS/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.4TwsDO/librust-gix-trace-dev:-stderr --stdout=/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:-stdout --tmp=/tmp/autopkgtest.4TwsDO/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-trace 0.1.10 --all-targets --no-default-features'"], kind test, sout raw, serr raw, env [] 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:-artifacts 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: changing to directory: /tmp/autopkgtest.4TwsDO/build.cnS/src 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: setting environment: LANG=C.UTF-8 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LANGUAGE 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_ADDRESS 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_ALL 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_COLLATE 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_CTYPE 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_IDENTIFICATION 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MEASUREMENT 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MESSAGES 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_MONETARY 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_NAME 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_NUMERIC 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_PAPER 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_TELEPHONE 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: unsetting environment: LC_TIME 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: pretending to be a login shell 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: will write standard error to /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:-stderr 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: will write stdout to /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:-stdout 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4TwsDO/autopkgtest_tmp 180s /tmp/autopkgtest.4TwsDO/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 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test gix-trace 0.1.10 --all-targets --no-default-features 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: copying /tmp/tmp.eah13ol9Gr/out to stdout and file: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:-stdout 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: copying /tmp/tmp.eah13ol9Gr/err to standard error and file: /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:-stdout 180s /tmp/autopkgtest.4TwsDO/wrapper.sh: writing script pid 3019 to /tmp/autopkgtest_script_pid 180s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 180s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 180s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 180s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.Usux1TY9z1/registry/ 180s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 180s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 180s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 180s 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'],) {} 180s Compiling gix-trace v0.1.10 (/usr/share/cargo/registry/gix-trace-0.1.10) 180s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gix_trace CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-trace-0.1.10 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-trace-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='A crate to provide minimal `tracing` support that can be turned off to zero cost' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-trace CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.Usux1TY9z1/target/debug/deps rustc --crate-name gix_trace --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 '--warn=clippy::pedantic' '--allow=clippy::wildcard_imports' '--allow=clippy::used_underscore_binding' '--allow=clippy::unused_self' '--allow=clippy::unreadable_literal' '--allow=clippy::unnecessary_wraps' '--allow=clippy::unnecessary_join' '--allow=clippy::trivially_copy_pass_by_ref' '--allow=clippy::transmute_ptr_to_ptr' '--allow=clippy::too_many_lines' '--allow=clippy::struct_field_names' '--allow=clippy::struct_excessive_bools' '--allow=clippy::stable_sort_primitive' '--allow=clippy::single_match_else' '--allow=clippy::similar_names' '--allow=clippy::should_panic_without_expect' '--allow=clippy::return_self_not_must_use' '--allow=clippy::redundant_else' '--allow=clippy::range_plus_one' '--allow=clippy::option_option' '--allow=clippy::no_effect_underscore_binding' '--allow=clippy::needless_raw_string_hashes' '--allow=clippy::needless_pass_by_value' '--allow=clippy::needless_for_each' '--allow=clippy::naive_bytecount' '--allow=clippy::mut_mut' '--allow=clippy::must_use_candidate' '--allow=clippy::module_name_repetitions' '--allow=clippy::missing_panics_doc' '--allow=clippy::missing_errors_doc' '--allow=clippy::match_wildcard_for_single_variants' '--allow=clippy::match_wild_err_arm' '--allow=clippy::match_same_arms' '--allow=clippy::match_bool' '--allow=clippy::many_single_char_names' '--allow=clippy::manual_string_new' '--allow=clippy::manual_let_else' '--allow=clippy::manual_is_variant_and' '--allow=clippy::manual_assert' '--allow=clippy::iter_without_into_iter' '--allow=clippy::iter_not_returning_iterator' '--allow=clippy::items_after_statements' '--allow=clippy::inline_always' '--allow=clippy::inefficient_to_string' '--allow=clippy::inconsistent_struct_constructor' '--allow=clippy::implicit_clone' '--allow=clippy::ignored_unit_patterns' '--allow=clippy::if_not_else' '--allow=clippy::from_iter_instead_of_collect' '--allow=clippy::fn_params_excessive_bools' '--allow=clippy::filter_map_next' '--allow=clippy::explicit_iter_loop' '--allow=clippy::explicit_into_iter_loop' '--allow=clippy::explicit_deref_methods' '--allow=clippy::enum_glob_use' '--allow=clippy::empty_docs' '--allow=clippy::doc_markdown' '--allow=clippy::default_trait_access' '--allow=clippy::copy_iterator' '--allow=clippy::checked_conversions' '--allow=clippy::cast_sign_loss' '--allow=clippy::cast_precision_loss' '--allow=clippy::cast_possible_wrap' '--allow=clippy::cast_possible_truncation' '--allow=clippy::cast_lossless' '--allow=clippy::borrow_as_ptr' '--allow=clippy::bool_to_int_with_if' --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "document-features", "tracing", "tracing-detail"))' -C metadata=98e98da5121a3e31 -C extra-filename=-98e98da5121a3e31 --out-dir /tmp/tmp.Usux1TY9z1/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.Usux1TY9z1/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.Usux1TY9z1/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.Usux1TY9z1/target/debug/deps -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-trace-0.1.10=/usr/share/cargo/registry/gix-trace-0.1.10 --remap-path-prefix /tmp/tmp.Usux1TY9z1/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 181s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 181s | 181s = note: this feature is not stably supported; its behavior can change in the future 181s 181s warning: `gix-trace` (lib test) generated 1 warning 181s Finished `test` profile [unoptimized + debuginfo] target(s) in 0.43s 181s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gix-trace-0.1.10 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gix-trace-0.1.10/Cargo.toml CARGO_PKG_AUTHORS='Sebastian Thiel ' CARGO_PKG_DESCRIPTION='A crate to provide minimal `tracing` support that can be turned off to zero cost' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gix-trace CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Byron/gitoxide' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.Usux1TY9z1/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.Usux1TY9z1/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.Usux1TY9z1/target/s390x-unknown-linux-gnu/debug/deps/gix_trace-98e98da5121a3e31` 181s 181s running 0 tests 181s 181s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 181s 181s /tmp/autopkgtest.4TwsDO/wrapper.sh: checking for leaked background processes... 181s /tmp/autopkgtest.4TwsDO/wrapper.sh: waiting for tee/cat subprocesses... 181s /tmp/autopkgtest.4TwsDO/wrapper.sh: cleaning up... 181s /tmp/autopkgtest.4TwsDO/wrapper.sh: Exit status: 0 181s autopkgtest: DBG: testbed command exited with code 0 181s autopkgtest [08:41:08]: test librust-gix-trace-dev:: -----------------------] 181s autopkgtest: DBG: testbed executing test finished with exit status 0 181s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3A-stdout /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3A-stdout 181s autopkgtest: DBG: got reply from testbed: ok 181s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3A-stderr /tmp/autopkgtest-work.tue5m9da/out/librust-gix-trace-dev%3A-stderr 182s autopkgtest: DBG: got reply from testbed: ok 182s autopkgtest [08:41:09]: test librust-gix-trace-dev:: - - - - - - - - - - results - - - - - - - - - - 182s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4TwsDO/librust-gix-trace-dev%3A-artifacts/ /tmp/autopkgtest-work.tue5m9da/out/artifacts/ 182s librust-gix-trace-dev: PASS 182s autopkgtest: DBG: got reply from testbed: ok 182s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4TwsDO/librust-gix-trace-dev:-artifacts', '/tmp/autopkgtest.4TwsDO/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 182s autopkgtest: DBG: testbed command exited with code 0 182s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 182s autopkgtest [08:41:09]: @@@@@@@@@@@@@@@@@@@@ summary 182s rust-gix-trace:@ PASS 182s librust-gix-trace-dev:default PASS 182s librust-gix-trace-dev:document-features PASS 182s librust-gix-trace-dev:tracing PASS 182s librust-gix-trace-dev:tracing-detail PASS 182s librust-gix-trace-dev: PASS 182s autopkgtest: DBG: testbed stop 182s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.4TwsDO 182s autopkgtest: DBG: sending command to testbed: close 200s autopkgtest: DBG: got reply from testbed: ok 200s autopkgtest: DBG: sending command to testbed: quit 200s nova [W] Using flock in prodstack6-s390x 200s flock: timeout while waiting to get lock 200s Creating nova instance adt-plucky-s390x-rust-gix-trace-20250215-083807-juju-7f2275-prod-proposed-migration-environment-15-fcef3db3-bae7-4296-98af-63ad19089a50 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 200s nova [W] Timed out waiting for b4be5921-925f-4f12-9bcb-854d3a6db996 to get deleted.