0s autopkgtest: DBG: testbed init 0s autopkgtest [20:41:49]: starting date and time: 2025-02-12 20:41:49+0000 0s autopkgtest [20:41:49]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [20:41:49]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.51hl_qw4/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-gufo-jpeg --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-6.secgroup --name adt-plucky-s390x-rust-gufo-jpeg-20250212-204149-juju-7f2275-prod-proposed-migration-environment-15-3bc057cf-220a-44aa-927f-c0091ce8b367 --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 112s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.LP3ile 112s autopkgtest: DBG: sending command to testbed: print-execute-command 112s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.mrq3_lhv/runcmd 112s autopkgtest: DBG: sending command to testbed: capabilities 112s autopkgtest: DBG: got reply from testbed: ok reboot revert isolation-machine suggested-normal-user=ubuntu revert-full-system root-on-testbed 112s autopkgtest: DBG: testbed capabilities: ['reboot', 'revert', 'isolation-machine', 'suggested-normal-user=ubuntu', 'revert-full-system', 'root-on-testbed', 'has_internet'] 112s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.LP3ile'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.LP3ile/wrapper.sh 112s autopkgtest: DBG: got reply from testbed: ok 112s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.LP3ile/wrapper.sh'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest [20:43:41]: testbed dpkg architecture: s390x 112s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [20:43:42]: testbed apt version: 2.9.28 113s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: testbed has eatmydata 113s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [20:43:42]: @@@@@@@@@@@@@@@@@@@@ test bed setup 113s 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 [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [20:43:42]: testbed release detected to be: None 113s 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 [] 113s autopkgtest: DBG: testbed command exited with code 0 113s 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 [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: adding APT source: Types: deb deb-src 113s URIs: http://ftpmaster.internal/ubuntu/ 113s Suites: plucky-proposed 113s Components: main restricted universe multiverse 113s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 113s 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 [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 114s Package: * 114s Pin: release plucky-proposed 114s Pin-Priority: 500 114s 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 [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [20:43:43]: updating testbed package index (apt update) 114s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 114s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 114s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 114s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 114s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 114s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [795 kB] 115s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.0 kB] 115s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [65.9 kB] 115s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [116 kB] 115s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [790 kB] 115s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3984 B] 115s Fetched 1895 kB in 1s (1428 kB/s) 116s Reading package lists... 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 116s Package: * 116s Pin: release plucky-proposed 116s Pin-Priority: 100 116s 116s Package: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any 116s Pin: release plucky-proposed 116s Pin-Priority: 995 116s 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 [] 116s autopkgtest: DBG: testbed command exited with code 0 116s 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.LP3ile/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s 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'] 116s + lsb_release --codename --short 116s + RELEASE=plucky 116s + cat 116s + [ plucky != trusty ] 116s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 116s Reading package lists... 116s Building dependency tree... 116s Reading state information... 117s Calculating upgrade... 117s The following packages were automatically installed and are no longer required: 117s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 117s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 117s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 117s linux-tools-6.11.0-8-generic 117s Use 'sudo apt autoremove' to remove them. 117s The following packages will be upgraded: 117s coreutils curl gzip init init-system-helpers libcurl3t64-gnutls libcurl4t64 117s libgnutls30t64 libnftables1 libnftnl11 libnspr4 nftables 117s 12 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 117s Need to get 4270 kB of archives. 117s After this operation, 125 kB disk space will be freed. 117s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x coreutils s390x 9.5-1ubuntu1 [1464 kB] 118s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x gzip s390x 1.13-1ubuntu2 [107 kB] 118s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x init-system-helpers all 1.68 [39.0 kB] 118s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x init s390x 1.68 [6298 B] 118s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgnutls30t64 s390x 3.8.9-2ubuntu1 [955 kB] 118s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x nftables s390x 1.1.1-1build1 [71.5 kB] 118s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libnftnl11 s390x 1.2.8-1 [66.6 kB] 118s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libnftables1 s390x 1.1.1-1build1 [388 kB] 118s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x curl s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [257 kB] 119s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libcurl4t64 s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [397 kB] 119s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libcurl3t64-gnutls s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [393 kB] 119s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libnspr4 s390x 2:4.36-1ubuntu1 [126 kB] 119s Fetched 4270 kB in 2s (1959 kB/s) 119s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 119s Preparing to unpack .../coreutils_9.5-1ubuntu1_s390x.deb ... 119s Unpacking coreutils (9.5-1ubuntu1) over (9.4-3.1ubuntu1) ... 119s Setting up coreutils (9.5-1ubuntu1) ... 119s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 119s Preparing to unpack .../gzip_1.13-1ubuntu2_s390x.deb ... 119s Unpacking gzip (1.13-1ubuntu2) over (1.12-1.1ubuntu2) ... 119s Setting up gzip (1.13-1ubuntu2) ... 120s (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.) 120s Preparing to unpack .../init-system-helpers_1.68_all.deb ... 120s Unpacking init-system-helpers (1.68) over (1.67ubuntu1) ... 120s Setting up init-system-helpers (1.68) ... 120s (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.) 120s Preparing to unpack .../0-init_1.68_s390x.deb ... 120s Unpacking init (1.68) over (1.67ubuntu1) ... 120s Preparing to unpack .../1-libgnutls30t64_3.8.9-2ubuntu1_s390x.deb ... 120s Unpacking libgnutls30t64:s390x (3.8.9-2ubuntu1) over (3.8.8-2ubuntu1) ... 120s Preparing to unpack .../2-nftables_1.1.1-1build1_s390x.deb ... 120s Unpacking nftables (1.1.1-1build1) over (1.1.0-2) ... 120s Preparing to unpack .../3-libnftnl11_1.2.8-1_s390x.deb ... 120s Unpacking libnftnl11:s390x (1.2.8-1) over (1.2.7-1) ... 120s Preparing to unpack .../4-libnftables1_1.1.1-1build1_s390x.deb ... 120s Unpacking libnftables1:s390x (1.1.1-1build1) over (1.1.0-2) ... 120s Preparing to unpack .../5-curl_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 120s Unpacking curl (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 120s Preparing to unpack .../6-libcurl4t64_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 120s Unpacking libcurl4t64:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 120s Preparing to unpack .../7-libcurl3t64-gnutls_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 120s Unpacking libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) over (8.11.1-1ubuntu1) ... 120s Preparing to unpack .../8-libnspr4_2%3a4.36-1ubuntu1_s390x.deb ... 120s Unpacking libnspr4:s390x (2:4.36-1ubuntu1) over (2:4.35-1.1ubuntu2) ... 120s Setting up libgnutls30t64:s390x (3.8.9-2ubuntu1) ... 120s Setting up init (1.68) ... 120s Setting up libcurl4t64:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 120s Setting up libcurl3t64-gnutls:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 120s Setting up libnftnl11:s390x (1.2.8-1) ... 120s Setting up libnspr4:s390x (2:4.36-1ubuntu1) ... 120s Setting up curl (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 120s Setting up libnftables1:s390x (1.1.1-1build1) ... 120s Setting up nftables (1.1.1-1build1) ... 120s Processing triggers for man-db (2.13.0-1) ... 121s Processing triggers for install-info (7.1.1-1) ... 121s Processing triggers for libc-bin (2.40-4ubuntu1) ... 121s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 121s + /usr/lib/apt/apt-helper analyze-pattern ?true 121s + + uname -r 121s sed s/\./\\./g 121s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 121s + apt list ?obsolete 121s + tail -n+2 121s + cut -d/ -f1 121s + grep -v ^linux-.*6\.12\.0-15-generic.* 121s + true 121s + obsolete_pkgs= 121s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 121s Reading package lists... 121s Building dependency tree... 121s Reading state information... 122s The following packages will be REMOVED: 122s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 122s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 122s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 122s linux-tools-6.11.0-8-generic* 122s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 122s After this operation, 167 MB disk space will be freed. 122s (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.) 122s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 122s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 122s Removing libpython3.12t64:s390x (3.12.9-1) ... 122s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 122s Removing libnsl2:s390x (1.3.0-3build3) ... 122s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 122s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 122s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 123s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 123s Processing triggers for libc-bin (2.40-4ubuntu1) ... 123s (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.) 123s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 123s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 123s + grep -q trusty /etc/lsb-release 123s + [ ! -d /usr/share/doc/unattended-upgrades ] 123s + [ ! -d /usr/share/doc/lxd ] 123s + [ ! -d /usr/share/doc/lxd-client ] 123s + [ ! -d /usr/share/doc/snapd ] 123s + type iptables 123s + cat 123s + chmod 755 /etc/rc.local 123s + . /etc/rc.local 123s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 123s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 123s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 123s + uname -m 123s + [ s390x = ppc64le ] 123s + [ -d /run/systemd/system ] 123s + systemd-detect-virt --quiet --vm 123s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 123s + cat 123s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 123s + echo COMPRESS=lz4 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest [20:43:52]: upgrading testbed (apt dist-upgrade and autopurge) 123s 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'] 123s Reading package lists... 124s Building dependency tree... 124s Reading state information... 124s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 124s Starting 2 pkgProblemResolver with broken count: 0 124s Done 124s Entering ResolveByKeep 124s 124s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 124s autopkgtest: DBG: testbed command exited with code 0 124s 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'] 124s Reading package lists... 125s Building dependency tree... 125s Reading state information... 125s Starting pkgProblemResolver with broken count: 0 125s Starting 2 pkgProblemResolver with broken count: 0 125s Done 125s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 125s autopkgtest: DBG: testbed command exited with code 0 125s 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.LP3ile/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 125s autopkgtest: DBG: testbed command exited with code 1 125s autopkgtest [20:43:54]: rebooting testbed after setup commands that affected boot 125s autopkgtest: DBG: sending command to testbed: reboot 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.LP3ile'], 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.LP3ile/autopkgtest-reboot 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.LP3ile/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.LP3ile/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.LP3ile/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.LP3ile'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.LP3ile/autopkgtest-reboot-prepare 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.LP3ile/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.LP3ile/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest [20:44:13]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 144s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.LP3ile/testbed-packages"], kind short, sout raw, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/testbed-packages /tmp/autopkgtest-work.51hl_qw4/out/testbed-packages 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 145s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.LP3ile'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.LP3ile/autopkgtest-reboot 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.LP3ile/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.LP3ile/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.LP3ile/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.LP3ile'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.LP3ile/autopkgtest-reboot-prepare 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.LP3ile/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.LP3ile/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest: DBG: Binaries: initialising 146s autopkgtest [20:44:15]: @@@@@@@@@@@@@@@@@@@@ apt-source rust-gufo-jpeg 146s autopkgtest: DBG: blame += rust-gufo-jpeg 146s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 146s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rust-gufo-jpeg'], kind short, sout pipe, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-gufo-jpeg-dev$'], kind short, sout pipe, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-gufo-jpeg-dev=0.1.3-1'], kind short, sout pipe, serr raw, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s autopkgtest: DBG: install_deps: deps_new=[] 147s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 147s autopkgtest: DBG: testbed command exited with code 0 147s 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.LP3ile/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rust-gufo-jpeg=0.1.3-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-gufo-jpeg_*.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'] 147s + cd / 147s + mktemp -d /tmp/autopkgtest.LP3ile/build.XXX 147s + builddir=/tmp/autopkgtest.LP3ile/build.MkC 147s + cd /tmp/autopkgtest.LP3ile/build.MkC 147s + apt-get source -d -q --only-source rust-gufo-jpeg=0.1.3-1 148s + OUT=Reading package lists... 148s NOTICE: 'rust-gufo-jpeg' packaging is maintained in the 'Git' version control system at: 148s https://salsa.debian.org/rust-team/debcargo-conf.git [src/gufo-jpeg] 148s Please use: 148s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/gufo-jpeg] 148s to retrieve the latest (possibly unreleased) updates to the package. 148s Need to get 19.9 kB of source archives. 148s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-gufo-jpeg 0.1.3-1 (dsc) [1654 B] 148s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-gufo-jpeg 0.1.3-1 (tar) [16.2 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-gufo-jpeg 0.1.3-1 (diff) [2044 B] 148s Fetched 19.9 kB in 0s (69.1 kB/s) 148s Download complete and in download only mode 148s + [ -n ] 148s + echo Reading package lists... 148s NOTICE: 'rust-gufo-jpeg' packaging is maintained in the 'Git' version control system at: 148s https://salsa.debian.org/rust-team/debcargo-conf.git [src/gufo-jpeg] 148s Please use: 148s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/gufo-jpeg] 148s to retrieve the latest (possibly unreleased) updates to the package. 148s Need to get 19.9 kB of source archives. 148s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-gufo-jpeg 0.1.3-1 (dsc) [1654 B] 148s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-gufo-jpeg 0.1.3-1 (tar) [16.2 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-gufo-jpeg 0.1.3-1 (diff) [2044 B] 148s Fetched 19.9 kB in 0s (69.1 kB/s) 148s Download complete and in download only mode+ 148s grep ^Get: 148s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-gufo-jpeg 0.1.3-1 (dsc) [1654 B] 148s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-gufo-jpeg 0.1.3-1 (tar) [16.2 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-gufo-jpeg 0.1.3-1 (diff) [2044 B] 148s + dpkg-source -x rust-gufo-jpeg_0.1.3-1.dsc src 148s gpgv: Signature made Thu Sep 19 09:50:16 2024 UTC 148s gpgv: using EDDSA key 14593BFF4A5EBF6FE0E9716EECBEDBB607B9B2BE 148s gpgv: issuer "werdahias@debian.org" 148s gpgv: Can't check signature: No public key 148s dpkg-source: warning: cannot verify inline signature for ./rust-gufo-jpeg_0.1.3-1.dsc: no acceptable signature found 148s + chmod -R a+rX . 148s + cd src/. 148s + pwd 148s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest [20:44:17]: testing package rust-gufo-jpeg version 0.1.3-1 148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/build.MkC/src/debian/ /tmp/autopkgtest-work.51hl_qw4/out/pkg/debian/ 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 148s autopkgtest: DBG: processing dependency @ 148s autopkgtest: DBG: synthesised dependency librust-gufo-jpeg-dev 148s autopkgtest: DBG: Test defined: name rust-gufo-jpeg:@ path None command "/usr/share/cargo/bin/cargo-auto-test gufo-jpeg 0.1.3 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-gufo-jpeg:@'] depends ['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'] 148s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 148s autopkgtest: DBG: processing dependency @ 148s autopkgtest: DBG: synthesised dependency librust-gufo-jpeg-dev 148s autopkgtest: DBG: Test defined: name librust-gufo-jpeg-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test gufo-jpeg 0.1.3 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gufo-jpeg-dev:default'] depends ['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'] 148s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 148s autopkgtest: DBG: processing dependency @ 148s autopkgtest: DBG: synthesised dependency librust-gufo-jpeg-dev 148s autopkgtest: DBG: Test defined: name librust-gufo-jpeg-dev: path None command "/usr/share/cargo/bin/cargo-auto-test gufo-jpeg 0.1.3 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gufo-jpeg-dev:'] depends ['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'] 148s autopkgtest [20:44:17]: build not needed 148s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/build.MkC/src/ /tmp/autopkgtest-work.51hl_qw4/out/tests-tree/ 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 149s autopkgtest: DBG: processing dependency @ 149s autopkgtest: DBG: synthesised dependency librust-gufo-jpeg-dev 149s autopkgtest: DBG: Test defined: name rust-gufo-jpeg:@ path None command "/usr/share/cargo/bin/cargo-auto-test gufo-jpeg 0.1.3 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-gufo-jpeg:@'] depends ['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'] 149s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 149s autopkgtest: DBG: processing dependency @ 149s autopkgtest: DBG: synthesised dependency librust-gufo-jpeg-dev 149s autopkgtest: DBG: Test defined: name librust-gufo-jpeg-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test gufo-jpeg 0.1.3 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gufo-jpeg-dev:default'] depends ['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'] 149s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 149s autopkgtest: DBG: processing dependency @ 149s autopkgtest: DBG: synthesised dependency librust-gufo-jpeg-dev 149s autopkgtest: DBG: Test defined: name librust-gufo-jpeg-dev: path None command "/usr/share/cargo/bin/cargo-auto-test gufo-jpeg 0.1.3 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-gufo-jpeg-dev:'] depends ['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'] 149s autopkgtest [20:44:18]: test rust-gufo-jpeg:@: preparing testbed 149s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'] 149s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 149s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'] 149s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-gufo-jpeg-dev 149s autopkgtest: DBG: can use apt-get on testbed: True 149s 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-gufo-jpeg-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 149s Reading package lists... 149s Building dependency tree... 149s Reading state information... 149s Starting pkgProblemResolver with broken count: 0 149s Starting 2 pkgProblemResolver with broken count: 0 149s Done 150s The following NEW packages will be installed: 150s autoconf automake autopoint autotools-dev cargo cargo-1.84 cpp cpp-14 150s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 150s dh-cargo dh-cargo-tools dh-strip-nondeterminism dwz gcc gcc-14 150s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext intltool-debian 150s libarchive-zip-perl libasan8 libcc1-0 libdebhelper-perl 150s libfile-stripnondeterminism-perl libgcc-14-dev libgit2-1.9 libgomp1 libisl23 150s libitm1 libmpc3 librust-ahash-dev librust-allocator-api2-dev 150s librust-arbitrary-dev librust-byteorder-dev librust-cfg-if-dev 150s librust-compiler-builtins-dev librust-const-random-dev 150s librust-const-random-macro-dev librust-critical-section-dev 150s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 150s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 150s librust-derive-arbitrary-dev librust-either-dev librust-equivalent-dev 150s librust-erased-serde-dev librust-getrandom-dev librust-gufo-common-dev 150s librust-gufo-jpeg-dev librust-hashbrown-dev librust-indexmap-dev 150s librust-itoa-dev librust-libc-dev librust-log-dev librust-memchr-dev 150s librust-no-panic-dev librust-once-cell-dev librust-parking-lot-core-dev 150s librust-paste-dev librust-pin-project-lite-dev librust-portable-atomic-dev 150s librust-proc-macro2-dev librust-quote-dev librust-rayon-core-dev 150s librust-rayon-dev librust-rustc-std-workspace-core-dev librust-ryu-dev 150s librust-serde-derive-dev librust-serde-dev librust-serde-fmt-dev 150s librust-serde-json-dev librust-serde-test-dev librust-smallvec-dev 150s librust-sval-buffer-dev librust-sval-derive-dev librust-sval-dev 150s librust-sval-dynamic-dev librust-sval-fmt-dev librust-sval-ref-dev 150s librust-sval-serde-dev librust-syn-1-dev librust-syn-dev 150s librust-tiny-keccak-dev librust-tracing-attributes-dev 150s librust-tracing-core-dev librust-tracing-dev librust-unicode-ident-dev 150s librust-valuable-derive-dev librust-valuable-dev librust-value-bag-dev 150s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 150s librust-version-check-dev librust-zerocopy-derive-dev librust-zerocopy-dev 150s libstd-rust-1.84 libstd-rust-1.84-dev libtool libubsan1 m4 po-debconf rustc 150s rustc-1.84 150s 0 upgraded, 109 newly installed, 0 to remove and 0 not upgraded. 150s Need to get 135 MB of archives. 150s After this operation, 523 MB of additional disk space will be used. 150s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 150s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 150s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 150s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 151s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 151s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libgit2-1.9 s390x 1.9.0~ds-0ubuntu1 [601 kB] 151s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [29.9 MB] 155s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84-dev s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [47.9 MB] 161s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 161s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 161s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 163s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 163s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 163s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 163s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 163s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 163s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 163s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 163s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 163s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 163s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 166s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 166s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 166s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 166s Get:25 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [6414 kB] 167s Get:26 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [7497 kB] 169s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 169s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 169s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 169s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 169s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 169s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 169s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 169s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 169s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 169s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 169s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 169s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 169s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc s390x 1.84.0ubuntu1 [2830 B] 169s Get:40 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo s390x 1.84.0ubuntu1 [2240 B] 169s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo-tools all 31ubuntu4 [5834 B] 169s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo all 31ubuntu4 [8668 B] 169s Get:43 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 169s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 169s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 169s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 169s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 169s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 169s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 169s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 169s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 169s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 169s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 169s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 169s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 169s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 169s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 169s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 169s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 169s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 169s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 169s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 169s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 169s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 169s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 170s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 170s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 170s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 170s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 170s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 170s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 170s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 170s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 170s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 170s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 170s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 170s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 170s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-paste-dev s390x 1.0.15-1 [21.0 kB] 170s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gufo-common-dev s390x 0.1.3-1 [20.0 kB] 170s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 170s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 170s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 170s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 170s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 170s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 170s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 170s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 170s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 170s Get:89 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 170s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 170s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 170s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 170s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 170s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 170s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 170s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 170s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 170s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 170s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 170s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 170s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 170s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 170s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 170s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 170s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 170s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 170s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 170s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 170s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gufo-jpeg-dev s390x 0.1.3-1 [17.2 kB] 171s Fetched 135 MB in 21s (6528 kB/s) 171s Selecting previously unselected package m4. 171s (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.) 171s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 171s Unpacking m4 (1.4.19-5) ... 171s Selecting previously unselected package autoconf. 171s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 171s Unpacking autoconf (2.72-3) ... 171s Selecting previously unselected package autotools-dev. 171s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 171s Unpacking autotools-dev (20220109.1) ... 171s Selecting previously unselected package automake. 171s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 171s Unpacking automake (1:1.17-3) ... 171s Selecting previously unselected package autopoint. 171s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 171s Unpacking autopoint (0.23.1-1) ... 171s Selecting previously unselected package libgit2-1.9:s390x. 171s Preparing to unpack .../005-libgit2-1.9_1.9.0~ds-0ubuntu1_s390x.deb ... 171s Unpacking libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 171s Selecting previously unselected package libstd-rust-1.84:s390x. 171s Preparing to unpack .../006-libstd-rust-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 171s Unpacking libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 172s Selecting previously unselected package libstd-rust-1.84-dev:s390x. 172s Preparing to unpack .../007-libstd-rust-1.84-dev_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 172s Unpacking libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 172s Selecting previously unselected package libisl23:s390x. 172s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 172s Unpacking libisl23:s390x (0.27-1) ... 172s Selecting previously unselected package libmpc3:s390x. 172s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 172s Unpacking libmpc3:s390x (1.3.1-1build2) ... 172s Selecting previously unselected package cpp-14-s390x-linux-gnu. 172s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 172s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 173s Selecting previously unselected package cpp-14. 173s Preparing to unpack .../011-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 173s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 173s Selecting previously unselected package cpp-s390x-linux-gnu. 173s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 173s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 173s Selecting previously unselected package cpp. 173s Preparing to unpack .../013-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 173s Unpacking cpp (4:14.2.0-1ubuntu1) ... 173s Selecting previously unselected package libcc1-0:s390x. 173s Preparing to unpack .../014-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 173s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 173s Selecting previously unselected package libgomp1:s390x. 173s Preparing to unpack .../015-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 173s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 173s Selecting previously unselected package libitm1:s390x. 173s Preparing to unpack .../016-libitm1_14.2.0-16ubuntu1_s390x.deb ... 173s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 173s Selecting previously unselected package libasan8:s390x. 173s Preparing to unpack .../017-libasan8_14.2.0-16ubuntu1_s390x.deb ... 173s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 173s Selecting previously unselected package libubsan1:s390x. 173s Preparing to unpack .../018-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 173s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 173s Selecting previously unselected package libgcc-14-dev:s390x. 173s Preparing to unpack .../019-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 173s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 173s Selecting previously unselected package gcc-14-s390x-linux-gnu. 173s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 173s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 173s Selecting previously unselected package gcc-14. 173s Preparing to unpack .../021-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 173s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 173s Selecting previously unselected package gcc-s390x-linux-gnu. 173s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 173s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 173s Selecting previously unselected package gcc. 173s Preparing to unpack .../023-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 173s Unpacking gcc (4:14.2.0-1ubuntu1) ... 173s Selecting previously unselected package rustc-1.84. 173s Preparing to unpack .../024-rustc-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 173s Unpacking rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 173s Selecting previously unselected package cargo-1.84. 173s Preparing to unpack .../025-cargo-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 173s Unpacking cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 173s Selecting previously unselected package libdebhelper-perl. 173s Preparing to unpack .../026-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 173s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 173s Selecting previously unselected package libtool. 173s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 173s Unpacking libtool (2.5.4-3build1) ... 173s Selecting previously unselected package dh-autoreconf. 173s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 173s Unpacking dh-autoreconf (20) ... 173s Selecting previously unselected package libarchive-zip-perl. 173s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 173s Unpacking libarchive-zip-perl (1.68-1) ... 173s Selecting previously unselected package libfile-stripnondeterminism-perl. 173s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 173s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 173s Selecting previously unselected package dh-strip-nondeterminism. 173s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 173s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 173s Selecting previously unselected package debugedit. 173s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 173s Unpacking debugedit (1:5.1-2) ... 173s Selecting previously unselected package dwz. 173s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 173s Unpacking dwz (0.15-1build6) ... 173s Selecting previously unselected package gettext. 173s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 173s Unpacking gettext (0.23.1-1) ... 173s Selecting previously unselected package intltool-debian. 173s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 173s Unpacking intltool-debian (0.35.0+20060710.6) ... 173s Selecting previously unselected package po-debconf. 173s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 173s Unpacking po-debconf (1.0.21+nmu1) ... 173s Selecting previously unselected package debhelper. 173s Preparing to unpack .../037-debhelper_13.24.1ubuntu2_all.deb ... 173s Unpacking debhelper (13.24.1ubuntu2) ... 173s Selecting previously unselected package rustc. 173s Preparing to unpack .../038-rustc_1.84.0ubuntu1_s390x.deb ... 173s Unpacking rustc (1.84.0ubuntu1) ... 173s Selecting previously unselected package cargo. 173s Preparing to unpack .../039-cargo_1.84.0ubuntu1_s390x.deb ... 173s Unpacking cargo (1.84.0ubuntu1) ... 173s Selecting previously unselected package dh-cargo-tools. 173s Preparing to unpack .../040-dh-cargo-tools_31ubuntu4_all.deb ... 173s Unpacking dh-cargo-tools (31ubuntu4) ... 173s Selecting previously unselected package dh-cargo. 173s Preparing to unpack .../041-dh-cargo_31ubuntu4_all.deb ... 173s Unpacking dh-cargo (31ubuntu4) ... 174s Selecting previously unselected package librust-critical-section-dev:s390x. 174s Preparing to unpack .../042-librust-critical-section-dev_1.2.0-1_s390x.deb ... 174s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 174s Selecting previously unselected package librust-unicode-ident-dev:s390x. 174s Preparing to unpack .../043-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 174s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 174s Selecting previously unselected package librust-proc-macro2-dev:s390x. 174s Preparing to unpack .../044-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 174s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 174s Selecting previously unselected package librust-quote-dev:s390x. 174s Preparing to unpack .../045-librust-quote-dev_1.0.37-1_s390x.deb ... 174s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 174s Selecting previously unselected package librust-syn-dev:s390x. 174s Preparing to unpack .../046-librust-syn-dev_2.0.96-2_s390x.deb ... 174s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 174s Selecting previously unselected package librust-serde-derive-dev:s390x. 174s Preparing to unpack .../047-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 174s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 174s Selecting previously unselected package librust-serde-dev:s390x. 174s Preparing to unpack .../048-librust-serde-dev_1.0.217-1_s390x.deb ... 174s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 174s Selecting previously unselected package librust-portable-atomic-dev:s390x. 174s Preparing to unpack .../049-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 174s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 174s Selecting previously unselected package librust-cfg-if-dev:s390x. 174s Preparing to unpack .../050-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 174s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 174s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 174s Preparing to unpack .../051-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 174s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 174s Selecting previously unselected package librust-libc-dev:s390x. 174s Preparing to unpack .../052-librust-libc-dev_0.2.169-1_s390x.deb ... 174s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 174s Selecting previously unselected package librust-getrandom-dev:s390x. 174s Preparing to unpack .../053-librust-getrandom-dev_0.2.15-1_s390x.deb ... 174s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 174s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 174s Preparing to unpack .../054-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 174s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 174s Selecting previously unselected package librust-arbitrary-dev:s390x. 174s Preparing to unpack .../055-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 174s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 174s Selecting previously unselected package librust-smallvec-dev:s390x. 174s Preparing to unpack .../056-librust-smallvec-dev_1.13.2-1_s390x.deb ... 174s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 174s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 174s Preparing to unpack .../057-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 174s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 174s Selecting previously unselected package librust-once-cell-dev:s390x. 174s Preparing to unpack .../058-librust-once-cell-dev_1.20.2-1_s390x.deb ... 174s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 174s Selecting previously unselected package librust-crunchy-dev:s390x. 174s Preparing to unpack .../059-librust-crunchy-dev_0.2.2-1_s390x.deb ... 174s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 174s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 174s Preparing to unpack .../060-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 174s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 174s Selecting previously unselected package librust-const-random-macro-dev:s390x. 174s Preparing to unpack .../061-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 174s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 174s Selecting previously unselected package librust-const-random-dev:s390x. 174s Preparing to unpack .../062-librust-const-random-dev_0.1.17-2_s390x.deb ... 174s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 174s Selecting previously unselected package librust-version-check-dev:s390x. 174s Preparing to unpack .../063-librust-version-check-dev_0.9.5-1_s390x.deb ... 174s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 174s Selecting previously unselected package librust-byteorder-dev:s390x. 174s Preparing to unpack .../064-librust-byteorder-dev_1.5.0-1_s390x.deb ... 174s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 174s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 174s Preparing to unpack .../065-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 174s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 174s Selecting previously unselected package librust-zerocopy-dev:s390x. 174s Preparing to unpack .../066-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 174s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 174s Selecting previously unselected package librust-ahash-dev. 174s Preparing to unpack .../067-librust-ahash-dev_0.8.11-9_all.deb ... 174s Unpacking librust-ahash-dev (0.8.11-9) ... 174s Selecting previously unselected package librust-allocator-api2-dev:s390x. 174s Preparing to unpack .../068-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 174s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 174s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 174s Preparing to unpack .../069-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 174s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 174s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 174s Preparing to unpack .../070-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 174s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 174s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 174s Preparing to unpack .../071-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 174s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 174s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 174s Preparing to unpack .../072-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 174s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 174s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 174s Preparing to unpack .../073-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 174s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 174s Selecting previously unselected package librust-either-dev:s390x. 174s Preparing to unpack .../074-librust-either-dev_1.13.0-1_s390x.deb ... 174s Unpacking librust-either-dev:s390x (1.13.0-1) ... 174s Selecting previously unselected package librust-equivalent-dev:s390x. 174s Preparing to unpack .../075-librust-equivalent-dev_1.0.1-1_s390x.deb ... 174s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 174s Selecting previously unselected package librust-erased-serde-dev:s390x. 174s Preparing to unpack .../076-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 174s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 174s Selecting previously unselected package librust-paste-dev:s390x. 174s Preparing to unpack .../077-librust-paste-dev_1.0.15-1_s390x.deb ... 174s Unpacking librust-paste-dev:s390x (1.0.15-1) ... 174s Selecting previously unselected package librust-gufo-common-dev:s390x. 174s Preparing to unpack .../078-librust-gufo-common-dev_0.1.3-1_s390x.deb ... 174s Unpacking librust-gufo-common-dev:s390x (0.1.3-1) ... 174s Selecting previously unselected package librust-sval-derive-dev:s390x. 174s Preparing to unpack .../079-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 174s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 174s Selecting previously unselected package librust-sval-dev:s390x. 174s Preparing to unpack .../080-librust-sval-dev_2.6.1-2_s390x.deb ... 174s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 174s Selecting previously unselected package librust-sval-ref-dev:s390x. 174s Preparing to unpack .../081-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 174s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 174s Selecting previously unselected package librust-serde-fmt-dev. 174s Preparing to unpack .../082-librust-serde-fmt-dev_1.0.3-4_all.deb ... 174s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 174s Selecting previously unselected package librust-rayon-core-dev:s390x. 174s Preparing to unpack .../083-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 174s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 174s Selecting previously unselected package librust-rayon-dev:s390x. 174s Preparing to unpack .../084-librust-rayon-dev_1.10.0-1_s390x.deb ... 174s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 174s Selecting previously unselected package librust-hashbrown-dev:s390x. 174s Preparing to unpack .../085-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 174s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 174s Selecting previously unselected package librust-indexmap-dev:s390x. 174s Preparing to unpack .../086-librust-indexmap-dev_2.7.0-1_s390x.deb ... 174s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 174s Selecting previously unselected package librust-no-panic-dev:s390x. 174s Preparing to unpack .../087-librust-no-panic-dev_0.1.32-1_s390x.deb ... 174s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 174s Selecting previously unselected package librust-itoa-dev:s390x. 174s Preparing to unpack .../088-librust-itoa-dev_1.0.14-1_s390x.deb ... 174s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 174s Selecting previously unselected package librust-memchr-dev:s390x. 174s Preparing to unpack .../089-librust-memchr-dev_2.7.4-1_s390x.deb ... 174s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 174s Selecting previously unselected package librust-ryu-dev:s390x. 174s Preparing to unpack .../090-librust-ryu-dev_1.0.19-1_s390x.deb ... 174s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 174s Selecting previously unselected package librust-serde-json-dev:s390x. 174s Preparing to unpack .../091-librust-serde-json-dev_1.0.133-1_s390x.deb ... 174s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 174s Selecting previously unselected package librust-serde-test-dev:s390x. 174s Preparing to unpack .../092-librust-serde-test-dev_1.0.171-1_s390x.deb ... 174s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 174s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 174s Preparing to unpack .../093-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 174s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 174s Selecting previously unselected package librust-sval-buffer-dev:s390x. 174s Preparing to unpack .../094-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 174s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 174s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 174s Preparing to unpack .../095-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 174s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 174s Selecting previously unselected package librust-sval-fmt-dev:s390x. 174s Preparing to unpack .../096-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 174s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 174s Selecting previously unselected package librust-sval-serde-dev:s390x. 174s Preparing to unpack .../097-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 174s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 174s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 174s Preparing to unpack .../098-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 174s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 174s Selecting previously unselected package librust-value-bag-dev:s390x. 174s Preparing to unpack .../099-librust-value-bag-dev_1.9.0-1_s390x.deb ... 174s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 174s Selecting previously unselected package librust-log-dev:s390x. 174s Preparing to unpack .../100-librust-log-dev_0.4.22-1_s390x.deb ... 174s Unpacking librust-log-dev:s390x (0.4.22-1) ... 174s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 174s Preparing to unpack .../101-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 174s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 174s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 174s Preparing to unpack .../102-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 174s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 174s Selecting previously unselected package librust-syn-1-dev:s390x. 174s Preparing to unpack .../103-librust-syn-1-dev_1.0.109-3_s390x.deb ... 174s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 174s Selecting previously unselected package librust-valuable-derive-dev:s390x. 174s Preparing to unpack .../104-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 174s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 174s Selecting previously unselected package librust-valuable-dev:s390x. 174s Preparing to unpack .../105-librust-valuable-dev_0.1.0-4_s390x.deb ... 174s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 174s Selecting previously unselected package librust-tracing-core-dev:s390x. 174s Preparing to unpack .../106-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 174s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 174s Selecting previously unselected package librust-tracing-dev:s390x. 174s Preparing to unpack .../107-librust-tracing-dev_0.1.40-1_s390x.deb ... 174s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 174s Selecting previously unselected package librust-gufo-jpeg-dev:s390x. 174s Preparing to unpack .../108-librust-gufo-jpeg-dev_0.1.3-1_s390x.deb ... 174s Unpacking librust-gufo-jpeg-dev:s390x (0.1.3-1) ... 174s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 174s Setting up librust-either-dev:s390x (1.13.0-1) ... 174s Setting up dh-cargo-tools (31ubuntu4) ... 174s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 174s Setting up libarchive-zip-perl (1.68-1) ... 174s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 174s Setting up m4 (1.4.19-5) ... 174s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 174s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 174s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 174s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 174s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 174s Setting up autotools-dev (20220109.1) ... 174s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 174s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 174s Setting up libmpc3:s390x (1.3.1-1build2) ... 174s Setting up autopoint (0.23.1-1) ... 174s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 174s Setting up libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 174s Setting up autoconf (2.72-3) ... 174s Setting up libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 174s Setting up librust-paste-dev:s390x (1.0.15-1) ... 174s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 174s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 174s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 174s Setting up dwz (0.15-1build6) ... 174s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 174s Setting up libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 174s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 174s Setting up debugedit (1:5.1-2) ... 174s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 174s Setting up libisl23:s390x (0.27-1) ... 174s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 174s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 174s Setting up automake (1:1.17-3) ... 174s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 174s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 174s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 174s Setting up librust-libc-dev:s390x (0.2.169-1) ... 174s Setting up gettext (0.23.1-1) ... 174s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 174s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 174s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 174s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 174s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 174s Setting up intltool-debian (0.35.0+20060710.6) ... 174s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 174s Setting up cpp-14 (14.2.0-16ubuntu1) ... 174s Setting up dh-strip-nondeterminism (1.14.1-2) ... 174s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 174s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 174s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 174s Setting up po-debconf (1.0.21+nmu1) ... 174s Setting up librust-quote-dev:s390x (1.0.37-1) ... 174s Setting up librust-syn-dev:s390x (2.0.96-2) ... 174s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 174s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 174s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 174s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 174s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 174s Setting up cpp (4:14.2.0-1ubuntu1) ... 174s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 174s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 174s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 174s Setting up librust-serde-dev:s390x (1.0.217-1) ... 174s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 174s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 174s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 174s Setting up librust-serde-fmt-dev (1.0.3-4) ... 174s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 174s Setting up librust-sval-dev:s390x (2.6.1-2) ... 174s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 174s Setting up gcc-14 (14.2.0-16ubuntu1) ... 174s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 174s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 174s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 174s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 174s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 174s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 174s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 174s Setting up libtool (2.5.4-3build1) ... 174s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 174s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 174s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 174s Setting up gcc (4:14.2.0-1ubuntu1) ... 174s Setting up dh-autoreconf (20) ... 174s Setting up rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 174s Setting up rustc (1.84.0ubuntu1) ... 174s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 174s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 174s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 174s Setting up cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 174s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 174s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 174s Setting up debhelper (13.24.1ubuntu2) ... 174s Setting up librust-ahash-dev (0.8.11-9) ... 174s Setting up librust-gufo-common-dev:s390x (0.1.3-1) ... 174s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 174s Setting up cargo (1.84.0ubuntu1) ... 174s Setting up dh-cargo (31ubuntu4) ... 174s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 174s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 174s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 174s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 174s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 174s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 174s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 174s Setting up librust-log-dev:s390x (0.4.22-1) ... 174s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 174s Setting up librust-gufo-jpeg-dev:s390x (0.1.3-1) ... 174s Processing triggers for libc-bin (2.40-4ubuntu1) ... 174s Processing triggers for man-db (2.13.0-1) ... 175s Processing triggers for install-info (7.1.1-1) ... 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-gufo-jpeg-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.LP3ile/rust-gufo-jpeg:@-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.LP3ile/rust-gufo-jpeg%3A%40-packages.all /tmp/autopkgtest-work.51hl_qw4/out/rust-gufo-jpeg%3A%40-packages.all 176s autopkgtest: DBG: got reply from testbed: ok 176s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.LP3ile/build.MkC/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.LP3ile/build.MkC/src already exists 176s autopkgtest [20:44:45]: test rust-gufo-jpeg:@: /usr/share/cargo/bin/cargo-auto-test gufo-jpeg 0.1.3 --all-targets --all-features 176s autopkgtest [20:44:45]: test rust-gufo-jpeg:@: [----------------------- 176s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.LP3ile/wrapper.sh --debug --artifacts=/tmp/autopkgtest.LP3ile/rust-gufo-jpeg:@-artifacts --chdir=/tmp/autopkgtest.LP3ile/build.MkC/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.LP3ile/rust-gufo-jpeg:@-stderr --stdout=/tmp/autopkgtest.LP3ile/rust-gufo-jpeg:@-stdout --tmp=/tmp/autopkgtest.LP3ile/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 gufo-jpeg 0.1.3 --all-targets --all-features'"], kind test, sout raw, serr raw, env [] 176s /tmp/autopkgtest.LP3ile/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.LP3ile/rust-gufo-jpeg:@-artifacts 176s /tmp/autopkgtest.LP3ile/wrapper.sh: changing to directory: /tmp/autopkgtest.LP3ile/build.MkC/src 176s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 176s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 176s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 176s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 176s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: LANG=C.UTF-8 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LANGUAGE 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_ADDRESS 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_ALL 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_COLLATE 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_CTYPE 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_IDENTIFICATION 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_MEASUREMENT 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_MESSAGES 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_MONETARY 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_NAME 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_NUMERIC 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_PAPER 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_TELEPHONE 176s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_TIME 176s /tmp/autopkgtest.LP3ile/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 176s /tmp/autopkgtest.LP3ile/wrapper.sh: pretending to be a login shell 176s /tmp/autopkgtest.LP3ile/wrapper.sh: will write standard error to /tmp/autopkgtest.LP3ile/rust-gufo-jpeg:@-stderr 176s /tmp/autopkgtest.LP3ile/wrapper.sh: will write stdout to /tmp/autopkgtest.LP3ile/rust-gufo-jpeg:@-stdout 176s /tmp/autopkgtest.LP3ile/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.LP3ile/autopkgtest_tmp 176s /tmp/autopkgtest.LP3ile/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 176s /tmp/autopkgtest.LP3ile/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test gufo-jpeg 0.1.3 --all-targets --all-features 176s /tmp/autopkgtest.LP3ile/wrapper.sh: copying /tmp/tmp.Ga14TKYqUm/out to stdout and file: /tmp/autopkgtest.LP3ile/rust-gufo-jpeg:@-stdout 176s /tmp/autopkgtest.LP3ile/wrapper.sh: copying /tmp/tmp.Ga14TKYqUm/err to standard error and file: /tmp/autopkgtest.LP3ile/rust-gufo-jpeg:@-stdout 176s /tmp/autopkgtest.LP3ile/wrapper.sh: writing script pid 2380 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.KVz5XhGt1E/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', '--all-features'],) {} 177s Compiling proc-macro2 v1.0.92 177s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KVz5XhGt1E/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.KVz5XhGt1E/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.KVz5XhGt1E/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.KVz5XhGt1E/target/debug/deps --cap-lints warn` 177s Compiling unicode-ident v1.0.13 177s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KVz5XhGt1E/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.KVz5XhGt1E/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.KVz5XhGt1E/target/debug/deps -L dependency=/tmp/tmp.KVz5XhGt1E/target/debug/deps --cap-lints warn` 177s Compiling once_cell v1.20.2 177s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/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.KVz5XhGt1E/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.KVz5XhGt1E/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.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KVz5XhGt1E/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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.KVz5XhGt1E/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: `once_cell` (lib) generated 1 warning 177s Compiling paste v1.0.15 177s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/paste-1.0.15 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/paste-1.0.15/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Macros for all your token pasting needs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=paste CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/paste' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.15 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KVz5XhGt1E/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.KVz5XhGt1E/registry/paste-1.0.15/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1df94c291fa3c93b -C extra-filename=-1df94c291fa3c93b --out-dir /tmp/tmp.KVz5XhGt1E/target/debug/build/paste-1df94c291fa3c93b -L dependency=/tmp/tmp.KVz5XhGt1E/target/debug/deps --cap-lints warn` 177s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.KVz5XhGt1E/target/debug/deps:/tmp/tmp.KVz5XhGt1E/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.KVz5XhGt1E/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.KVz5XhGt1E/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 177s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 177s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 177s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 177s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 177s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KVz5XhGt1E/target/debug/deps OUT_DIR=/tmp/tmp.KVz5XhGt1E/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.KVz5XhGt1E/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.KVz5XhGt1E/target/debug/deps -L dependency=/tmp/tmp.KVz5XhGt1E/target/debug/deps --extern unicode_ident=/tmp/tmp.KVz5XhGt1E/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 177s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/paste-1.0.15 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/paste-1.0.15/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Macros for all your token pasting needs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=paste CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/paste' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.15 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.KVz5XhGt1E/target/debug/deps:/tmp/tmp.KVz5XhGt1E/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.KVz5XhGt1E/target/debug/build/paste-93337411b64beae9/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.KVz5XhGt1E/target/debug/build/paste-1df94c291fa3c93b/build-script-build` 177s [paste 1.0.15] cargo:rerun-if-changed=build.rs 177s [paste 1.0.15] cargo:rustc-check-cfg=cfg(no_literal_fromstr) 177s [paste 1.0.15] cargo:rustc-check-cfg=cfg(feature, values("protocol_feature_paste")) 177s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=paste CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/paste-1.0.15 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/paste-1.0.15/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Macros for all your token pasting needs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=paste CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/paste' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.15 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KVz5XhGt1E/target/debug/deps OUT_DIR=/tmp/tmp.KVz5XhGt1E/target/debug/build/paste-93337411b64beae9/out rustc --crate-name paste --edition=2018 /tmp/tmp.KVz5XhGt1E/registry/paste-1.0.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=bec0c7568d224633 -C extra-filename=-bec0c7568d224633 --out-dir /tmp/tmp.KVz5XhGt1E/target/debug/deps -L dependency=/tmp/tmp.KVz5XhGt1E/target/debug/deps --extern proc_macro --cap-lints warn --check-cfg 'cfg(no_literal_fromstr)' --check-cfg 'cfg(feature, values("protocol_feature_paste"))'` 178s Compiling quote v1.0.37 178s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KVz5XhGt1E/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.KVz5XhGt1E/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.KVz5XhGt1E/target/debug/deps -L dependency=/tmp/tmp.KVz5XhGt1E/target/debug/deps --extern proc_macro2=/tmp/tmp.KVz5XhGt1E/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 178s Compiling tracing-core v0.1.32 178s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/tracing-core-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/tracing-core-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing. 178s ' 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.KVz5XhGt1E/target/debug/deps rustc --crate-name tracing_core --edition=2018 /tmp/tmp.KVz5XhGt1E/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="once_cell"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "once_cell", "std", "valuable"))' -C metadata=4c8af7279fad1469 -C extra-filename=-4c8af7279fad1469 --out-dir /tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KVz5XhGt1E/target/debug/deps --extern once_cell=/tmp/tmp.KVz5XhGt1E/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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.KVz5XhGt1E/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 178s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 178s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/lib.rs:138:5 178s | 178s 138 | private_in_public, 178s | ^^^^^^^^^^^^^^^^^ 178s | 178s = note: `#[warn(renamed_and_removed_lints)]` on by default 178s 178s warning: unexpected `cfg` condition value: `alloc` 178s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:147:7 178s | 178s 147 | #[cfg(feature = "alloc")] 178s | ^^^^^^^^^^^^^^^^^ 178s | 178s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 178s = help: consider adding `alloc` as a feature in `Cargo.toml` 178s = note: see for more information about checking conditional configuration 178s = note: `#[warn(unexpected_cfgs)]` on by default 178s 178s warning: unexpected `cfg` condition value: `alloc` 178s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:150:7 178s | 178s 150 | #[cfg(feature = "alloc")] 178s | ^^^^^^^^^^^^^^^^^ 178s | 178s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 178s = help: consider adding `alloc` as a feature in `Cargo.toml` 178s = note: see for more information about checking conditional configuration 178s 178s warning: unexpected `cfg` condition name: `tracing_unstable` 178s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:374:11 178s | 178s 374 | #[cfg(all(tracing_unstable, feature = "valuable"))] 178s | ^^^^^^^^^^^^^^^^ 178s | 178s = 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` 178s = help: consider using a Cargo feature instead 178s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 178s [lints.rust] 178s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 178s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 178s = note: see for more information about checking conditional configuration 178s 178s warning: unexpected `cfg` condition name: `tracing_unstable` 178s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:719:11 178s | 178s 719 | #[cfg(all(tracing_unstable, feature = "valuable"))] 178s | ^^^^^^^^^^^^^^^^ 178s | 178s = help: consider using a Cargo feature instead 178s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 178s [lints.rust] 178s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 178s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 178s = note: see for more information about checking conditional configuration 178s 178s warning: unexpected `cfg` condition name: `tracing_unstable` 178s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:722:11 178s | 178s 722 | #[cfg(all(tracing_unstable, feature = "valuable"))] 178s | ^^^^^^^^^^^^^^^^ 178s | 178s = help: consider using a Cargo feature instead 178s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 178s [lints.rust] 178s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 178s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 178s = note: see for more information about checking conditional configuration 178s 178s warning: unexpected `cfg` condition name: `tracing_unstable` 178s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:730:11 178s | 178s 730 | #[cfg(all(tracing_unstable, feature = "valuable"))] 178s | ^^^^^^^^^^^^^^^^ 178s | 178s = help: consider using a Cargo feature instead 178s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 178s [lints.rust] 178s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 178s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 178s = note: see for more information about checking conditional configuration 178s 178s warning: unexpected `cfg` condition name: `tracing_unstable` 178s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:733:11 178s | 178s 733 | #[cfg(all(tracing_unstable, feature = "valuable"))] 178s | ^^^^^^^^^^^^^^^^ 178s | 178s = help: consider using a Cargo feature instead 178s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 178s [lints.rust] 178s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 178s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 178s = note: see for more information about checking conditional configuration 178s 178s warning: unexpected `cfg` condition name: `tracing_unstable` 178s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:270:15 178s | 178s 270 | #[cfg(all(tracing_unstable, feature = "valuable"))] 178s | ^^^^^^^^^^^^^^^^ 178s | 178s = help: consider using a Cargo feature instead 178s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 178s [lints.rust] 178s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 178s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 178s = note: see for more information about checking conditional configuration 178s 178s Compiling syn v2.0.96 178s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KVz5XhGt1E/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.KVz5XhGt1E/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=767ef8b32a93b940 -C extra-filename=-767ef8b32a93b940 --out-dir /tmp/tmp.KVz5XhGt1E/target/debug/deps -L dependency=/tmp/tmp.KVz5XhGt1E/target/debug/deps --extern proc_macro2=/tmp/tmp.KVz5XhGt1E/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.KVz5XhGt1E/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.KVz5XhGt1E/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 178s warning: creating a shared reference to mutable static is discouraged 178s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:458:9 178s | 178s 458 | &GLOBAL_DISPATCH 178s | ^^^^^^^^^^^^^^^^ shared reference to mutable static 178s | 178s = note: for more information, see 178s = 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 178s = note: `#[warn(static_mut_refs)]` on by default 178s help: use `&raw const` instead to create a raw pointer 178s | 178s 458 | &raw const GLOBAL_DISPATCH 178s | ~~~~~~~~~~ 178s 179s warning: `tracing-core` (lib) generated 11 warnings (1 duplicate) 179s Compiling pin-project-lite v0.2.13 179s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 179s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KVz5XhGt1E/target/debug/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.KVz5XhGt1E/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5dc815523e98d889 -C extra-filename=-5dc815523e98d889 --out-dir /tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KVz5XhGt1E/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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.KVz5XhGt1E/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 179s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 179s Compiling gufo-common v0.1.3 179s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gufo_common CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/gufo-common-0.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/gufo-common-0.1.3/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common features used in gufo crates' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MPL-2.0 OR LGPL-2.1-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gufo-common CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gufo-rs/gufo' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KVz5XhGt1E/target/debug/deps rustc --crate-name gufo_common --edition=2021 /tmp/tmp.KVz5XhGt1E/registry/gufo-common-0.1.3/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 --forbid=unsafe_code '--forbid=clippy::cast_possible_wrap' '--forbid=clippy::cast_possible_truncation' '--forbid=clippy::arithmetic_side_effects' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=365e28f69380192c -C extra-filename=-365e28f69380192c --out-dir /tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KVz5XhGt1E/target/debug/deps --extern once_cell=/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern paste=/tmp/tmp.KVz5XhGt1E/target/debug/deps/libpaste-bec0c7568d224633.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.KVz5XhGt1E/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 179s warning: `gufo-common` (lib) generated 1 warning (1 duplicate) 183s Compiling tracing-attributes v0.1.27 183s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_attributes CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/tracing-attributes-0.1.27 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/tracing-attributes-0.1.27/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors :Eliza Weisman :David Barsky ' CARGO_PKG_DESCRIPTION='Procedural macro attributes for automatically instrumenting functions. 183s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-attributes 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.27 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=27 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KVz5XhGt1E/target/debug/deps rustc --crate-name tracing_attributes --edition=2018 /tmp/tmp.KVz5XhGt1E/registry/tracing-attributes-0.1.27/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await"))' -C metadata=d651f249cfb6fec4 -C extra-filename=-d651f249cfb6fec4 --out-dir /tmp/tmp.KVz5XhGt1E/target/debug/deps -L dependency=/tmp/tmp.KVz5XhGt1E/target/debug/deps --extern proc_macro2=/tmp/tmp.KVz5XhGt1E/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.KVz5XhGt1E/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.KVz5XhGt1E/target/debug/deps/libsyn-767ef8b32a93b940.rlib --extern proc_macro --cap-lints warn` 183s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 183s --> /tmp/tmp.KVz5XhGt1E/registry/tracing-attributes-0.1.27/src/lib.rs:73:5 183s | 183s 73 | private_in_public, 183s | ^^^^^^^^^^^^^^^^^ 183s | 183s = note: `#[warn(renamed_and_removed_lints)]` on by default 183s 185s warning: `tracing-attributes` (lib) generated 1 warning 185s Compiling tracing v0.1.40 185s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing CARGO_MANIFEST_DIR=/tmp/tmp.KVz5XhGt1E/registry/tracing-0.1.40 CARGO_MANIFEST_PATH=/tmp/tmp.KVz5XhGt1E/registry/tracing-0.1.40/Cargo.toml CARGO_PKG_AUTHORS='Eliza Weisman :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Application-level tracing for Rust. 185s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing 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.40 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=40 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.KVz5XhGt1E/target/debug/deps rustc --crate-name tracing --edition=2018 /tmp/tmp.KVz5XhGt1E/registry/tracing-0.1.40/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="attributes"' --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="tracing-attributes"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await", "attributes", "default", "log", "log-always", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "std", "tracing-attributes"))' -C metadata=6c097583f83e93f4 -C extra-filename=-6c097583f83e93f4 --out-dir /tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KVz5XhGt1E/target/debug/deps --extern pin_project_lite=/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern tracing_attributes=/tmp/tmp.KVz5XhGt1E/target/debug/deps/libtracing_attributes-d651f249cfb6fec4.so --extern tracing_core=/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps/libtracing_core-4c8af7279fad1469.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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.KVz5XhGt1E/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 185s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 185s --> /usr/share/cargo/registry/tracing-0.1.40/src/lib.rs:932:5 185s | 185s 932 | private_in_public, 185s | ^^^^^^^^^^^^^^^^^ 185s | 185s = note: `#[warn(renamed_and_removed_lints)]` on by default 185s 185s warning: `tracing` (lib) generated 2 warnings (1 duplicate) 185s Compiling gufo-jpeg v0.1.3 (/usr/share/cargo/registry/gufo-jpeg-0.1.3) 185s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gufo_jpeg CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gufo-jpeg-0.1.3 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gufo-jpeg-0.1.3/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Inspect JPEG image structure' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MPL-2.0 OR LGPL-2.1-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gufo-jpeg CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gufo-rs/gufo' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.KVz5XhGt1E/target/debug/deps rustc --crate-name gufo_jpeg --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 --forbid=unsafe_code '--forbid=clippy::cast_possible_wrap' '--forbid=clippy::cast_possible_truncation' '--forbid=clippy::arithmetic_side_effects' --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=276c0215b3ac641e -C extra-filename=-276c0215b3ac641e --out-dir /tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.KVz5XhGt1E/target/debug/deps --extern gufo_common=/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps/libgufo_common-365e28f69380192c.rlib --extern tracing=/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps/libtracing-6c097583f83e93f4.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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.KVz5XhGt1E/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 185s warning: `gufo-jpeg` (lib test) generated 1 warning (1 duplicate) 185s Finished `test` profile [unoptimized + debuginfo] target(s) in 8.76s 185s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gufo-jpeg-0.1.3 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gufo-jpeg-0.1.3/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Inspect JPEG image structure' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MPL-2.0 OR LGPL-2.1-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gufo-jpeg CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gufo-rs/gufo' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.KVz5XhGt1E/target/s390x-unknown-linux-gnu/debug/deps/gufo_jpeg-276c0215b3ac641e` 185s 185s running 0 tests 185s 185s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 185s 185s /tmp/autopkgtest.LP3ile/wrapper.sh: checking for leaked background processes... 185s /tmp/autopkgtest.LP3ile/wrapper.sh: waiting for tee/cat subprocesses... 185s /tmp/autopkgtest.LP3ile/wrapper.sh: cleaning up... 185s /tmp/autopkgtest.LP3ile/wrapper.sh: Exit status: 0 185s autopkgtest: DBG: testbed command exited with code 0 186s autopkgtest [20:44:55]: test rust-gufo-jpeg:@: -----------------------] 186s autopkgtest: DBG: testbed executing test finished with exit status 0 186s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/rust-gufo-jpeg%3A%40-stdout /tmp/autopkgtest-work.51hl_qw4/out/rust-gufo-jpeg%3A%40-stdout 186s autopkgtest: DBG: got reply from testbed: ok 186s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/rust-gufo-jpeg%3A%40-stderr /tmp/autopkgtest-work.51hl_qw4/out/rust-gufo-jpeg%3A%40-stderr 186s autopkgtest: DBG: got reply from testbed: ok 186s rust-gufo-jpeg:@ PASS 186s autopkgtest [20:44:55]: test rust-gufo-jpeg:@: - - - - - - - - - - results - - - - - - - - - - 186s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/rust-gufo-jpeg%3A%40-artifacts/ /tmp/autopkgtest-work.51hl_qw4/out/artifacts/ 187s autopkgtest: DBG: got reply from testbed: ok 187s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.LP3ile/rust-gufo-jpeg:@-artifacts', '/tmp/autopkgtest.LP3ile/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest [20:44:56]: test librust-gufo-jpeg-dev:default: preparing testbed 187s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'], deps_new=['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'] 187s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 187s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'] 187s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-gufo-jpeg-dev 187s autopkgtest: DBG: can use apt-get on testbed: True 187s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'dh-cargo (>= 18), librust-gufo-jpeg-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 187s Reading package lists... 187s Building dependency tree... 187s Reading state information... 187s Starting pkgProblemResolver with broken count: 0 187s Starting 2 pkgProblemResolver with broken count: 0 187s Done 187s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-gufo-jpeg-dev'], kind short, sout pipe, serr pipe, env [] 188s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:default-packages.all"], kind short, sout raw, serr pipe, env [] 188s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev%3Adefault-packages.all /tmp/autopkgtest-work.51hl_qw4/out/librust-gufo-jpeg-dev%3Adefault-packages.all 188s autopkgtest: DBG: got reply from testbed: ok 188s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.LP3ile/build.MkC/src'], kind short, sout raw, serr raw, env [] 188s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.LP3ile/build.MkC/src already exists 188s autopkgtest [20:44:57]: test librust-gufo-jpeg-dev:default: /usr/share/cargo/bin/cargo-auto-test gufo-jpeg 0.1.3 --all-targets 188s autopkgtest [20:44:57]: test librust-gufo-jpeg-dev:default: [----------------------- 188s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.LP3ile/wrapper.sh --debug --artifacts=/tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:default-artifacts --chdir=/tmp/autopkgtest.LP3ile/build.MkC/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.LP3ile/librust-gufo-jpeg-dev:default-stderr --stdout=/tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:default-stdout --tmp=/tmp/autopkgtest.LP3ile/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 gufo-jpeg 0.1.3 --all-targets'"], kind test, sout raw, serr raw, env [] 188s /tmp/autopkgtest.LP3ile/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:default-artifacts 188s /tmp/autopkgtest.LP3ile/wrapper.sh: changing to directory: /tmp/autopkgtest.LP3ile/build.MkC/src 188s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 188s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 188s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 188s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 188s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: LANG=C.UTF-8 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LANGUAGE 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_ADDRESS 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_ALL 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_COLLATE 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_CTYPE 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_IDENTIFICATION 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_MEASUREMENT 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_MESSAGES 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_MONETARY 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_NAME 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_NUMERIC 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_PAPER 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_TELEPHONE 188s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_TIME 188s /tmp/autopkgtest.LP3ile/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 188s /tmp/autopkgtest.LP3ile/wrapper.sh: pretending to be a login shell 188s /tmp/autopkgtest.LP3ile/wrapper.sh: will write standard error to /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:default-stderr 188s /tmp/autopkgtest.LP3ile/wrapper.sh: will write stdout to /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:default-stdout 188s /tmp/autopkgtest.LP3ile/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.LP3ile/autopkgtest_tmp 188s /tmp/autopkgtest.LP3ile/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 188s /tmp/autopkgtest.LP3ile/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test gufo-jpeg 0.1.3 --all-targets 188s /tmp/autopkgtest.LP3ile/wrapper.sh: copying /tmp/tmp.ySyUnPeByC/out to stdout and file: /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:default-stdout 188s /tmp/autopkgtest.LP3ile/wrapper.sh: copying /tmp/tmp.ySyUnPeByC/err to standard error and file: /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:default-stdout 188s /tmp/autopkgtest.LP3ile/wrapper.sh: writing script pid 2738 to /tmp/autopkgtest_script_pid 188s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 188s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 188s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 188s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.vfEuvkHbeE/registry/ 188s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 188s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 188s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 188s 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'],) {} 189s Compiling proc-macro2 v1.0.92 189s Compiling unicode-ident v1.0.13 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.vfEuvkHbeE/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.vfEuvkHbeE/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.vfEuvkHbeE/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.vfEuvkHbeE/target/debug/deps --cap-lints warn` 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.vfEuvkHbeE/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.vfEuvkHbeE/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.vfEuvkHbeE/target/debug/deps -L dependency=/tmp/tmp.vfEuvkHbeE/target/debug/deps --cap-lints warn` 189s Compiling paste v1.0.15 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/paste-1.0.15 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/paste-1.0.15/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Macros for all your token pasting needs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=paste CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/paste' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.15 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.vfEuvkHbeE/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.vfEuvkHbeE/registry/paste-1.0.15/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1df94c291fa3c93b -C extra-filename=-1df94c291fa3c93b --out-dir /tmp/tmp.vfEuvkHbeE/target/debug/build/paste-1df94c291fa3c93b -L dependency=/tmp/tmp.vfEuvkHbeE/target/debug/deps --cap-lints warn` 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.vfEuvkHbeE/target/debug/deps:/tmp/tmp.vfEuvkHbeE/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.vfEuvkHbeE/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.vfEuvkHbeE/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 189s Compiling once_cell v1.20.2 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/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.vfEuvkHbeE/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.vfEuvkHbeE/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.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.vfEuvkHbeE/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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.vfEuvkHbeE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 189s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 189s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 189s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.vfEuvkHbeE/target/debug/deps OUT_DIR=/tmp/tmp.vfEuvkHbeE/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.vfEuvkHbeE/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.vfEuvkHbeE/target/debug/deps -L dependency=/tmp/tmp.vfEuvkHbeE/target/debug/deps --extern unicode_ident=/tmp/tmp.vfEuvkHbeE/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 189s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 189s | 189s = note: this feature is not stably supported; its behavior can change in the future 189s 189s warning: `once_cell` (lib) generated 1 warning 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/paste-1.0.15 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/paste-1.0.15/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Macros for all your token pasting needs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=paste CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/paste' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.15 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.vfEuvkHbeE/target/debug/deps:/tmp/tmp.vfEuvkHbeE/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.vfEuvkHbeE/target/debug/build/paste-93337411b64beae9/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.vfEuvkHbeE/target/debug/build/paste-1df94c291fa3c93b/build-script-build` 189s [paste 1.0.15] cargo:rerun-if-changed=build.rs 189s [paste 1.0.15] cargo:rustc-check-cfg=cfg(no_literal_fromstr) 189s [paste 1.0.15] cargo:rustc-check-cfg=cfg(feature, values("protocol_feature_paste")) 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=paste CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/paste-1.0.15 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/paste-1.0.15/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Macros for all your token pasting needs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=paste CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/paste' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.15 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.vfEuvkHbeE/target/debug/deps OUT_DIR=/tmp/tmp.vfEuvkHbeE/target/debug/build/paste-93337411b64beae9/out rustc --crate-name paste --edition=2018 /tmp/tmp.vfEuvkHbeE/registry/paste-1.0.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=bec0c7568d224633 -C extra-filename=-bec0c7568d224633 --out-dir /tmp/tmp.vfEuvkHbeE/target/debug/deps -L dependency=/tmp/tmp.vfEuvkHbeE/target/debug/deps --extern proc_macro --cap-lints warn --check-cfg 'cfg(no_literal_fromstr)' --check-cfg 'cfg(feature, values("protocol_feature_paste"))'` 190s Compiling quote v1.0.37 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.vfEuvkHbeE/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.vfEuvkHbeE/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.vfEuvkHbeE/target/debug/deps -L dependency=/tmp/tmp.vfEuvkHbeE/target/debug/deps --extern proc_macro2=/tmp/tmp.vfEuvkHbeE/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 190s Compiling tracing-core v0.1.32 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/tracing-core-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/tracing-core-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing. 190s ' 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.vfEuvkHbeE/target/debug/deps rustc --crate-name tracing_core --edition=2018 /tmp/tmp.vfEuvkHbeE/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="once_cell"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "once_cell", "std", "valuable"))' -C metadata=4c8af7279fad1469 -C extra-filename=-4c8af7279fad1469 --out-dir /tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.vfEuvkHbeE/target/debug/deps --extern once_cell=/tmp/tmp.vfEuvkHbeE/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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.vfEuvkHbeE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 190s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 190s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/lib.rs:138:5 190s | 190s 138 | private_in_public, 190s | ^^^^^^^^^^^^^^^^^ 190s | 190s = note: `#[warn(renamed_and_removed_lints)]` on by default 190s 190s warning: unexpected `cfg` condition value: `alloc` 190s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:147:7 190s | 190s 147 | #[cfg(feature = "alloc")] 190s | ^^^^^^^^^^^^^^^^^ 190s | 190s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 190s = help: consider adding `alloc` as a feature in `Cargo.toml` 190s = note: see for more information about checking conditional configuration 190s = note: `#[warn(unexpected_cfgs)]` on by default 190s 190s warning: unexpected `cfg` condition value: `alloc` 190s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:150:7 190s | 190s 150 | #[cfg(feature = "alloc")] 190s | ^^^^^^^^^^^^^^^^^ 190s | 190s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 190s = help: consider adding `alloc` as a feature in `Cargo.toml` 190s = note: see for more information about checking conditional configuration 190s 190s warning: unexpected `cfg` condition name: `tracing_unstable` 190s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:374:11 190s | 190s 374 | #[cfg(all(tracing_unstable, feature = "valuable"))] 190s | ^^^^^^^^^^^^^^^^ 190s | 190s = 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` 190s = help: consider using a Cargo feature instead 190s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 190s [lints.rust] 190s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 190s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 190s = note: see for more information about checking conditional configuration 190s 190s warning: unexpected `cfg` condition name: `tracing_unstable` 190s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:719:11 190s | 190s 719 | #[cfg(all(tracing_unstable, feature = "valuable"))] 190s | ^^^^^^^^^^^^^^^^ 190s | 190s = help: consider using a Cargo feature instead 190s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 190s [lints.rust] 190s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 190s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 190s = note: see for more information about checking conditional configuration 190s 190s warning: unexpected `cfg` condition name: `tracing_unstable` 190s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:722:11 190s | 190s 722 | #[cfg(all(tracing_unstable, feature = "valuable"))] 190s | ^^^^^^^^^^^^^^^^ 190s | 190s = help: consider using a Cargo feature instead 190s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 190s [lints.rust] 190s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 190s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 190s = note: see for more information about checking conditional configuration 190s 190s warning: unexpected `cfg` condition name: `tracing_unstable` 190s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:730:11 190s | 190s 730 | #[cfg(all(tracing_unstable, feature = "valuable"))] 190s | ^^^^^^^^^^^^^^^^ 190s | 190s = help: consider using a Cargo feature instead 190s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 190s [lints.rust] 190s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 190s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 190s = note: see for more information about checking conditional configuration 190s 190s warning: unexpected `cfg` condition name: `tracing_unstable` 190s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:733:11 190s | 190s 733 | #[cfg(all(tracing_unstable, feature = "valuable"))] 190s | ^^^^^^^^^^^^^^^^ 190s | 190s = help: consider using a Cargo feature instead 190s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 190s [lints.rust] 190s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 190s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 190s = note: see for more information about checking conditional configuration 190s 190s warning: unexpected `cfg` condition name: `tracing_unstable` 190s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:270:15 190s | 190s 270 | #[cfg(all(tracing_unstable, feature = "valuable"))] 190s | ^^^^^^^^^^^^^^^^ 190s | 190s = help: consider using a Cargo feature instead 190s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 190s [lints.rust] 190s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 190s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 190s = note: see for more information about checking conditional configuration 190s 190s Compiling syn v2.0.96 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.vfEuvkHbeE/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.vfEuvkHbeE/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=767ef8b32a93b940 -C extra-filename=-767ef8b32a93b940 --out-dir /tmp/tmp.vfEuvkHbeE/target/debug/deps -L dependency=/tmp/tmp.vfEuvkHbeE/target/debug/deps --extern proc_macro2=/tmp/tmp.vfEuvkHbeE/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.vfEuvkHbeE/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.vfEuvkHbeE/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 190s warning: creating a shared reference to mutable static is discouraged 190s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:458:9 190s | 190s 458 | &GLOBAL_DISPATCH 190s | ^^^^^^^^^^^^^^^^ shared reference to mutable static 190s | 190s = note: for more information, see 190s = 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 190s = note: `#[warn(static_mut_refs)]` on by default 190s help: use `&raw const` instead to create a raw pointer 190s | 190s 458 | &raw const GLOBAL_DISPATCH 190s | ~~~~~~~~~~ 190s 190s warning: `tracing-core` (lib) generated 11 warnings (1 duplicate) 190s Compiling pin-project-lite v0.2.13 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 190s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.vfEuvkHbeE/target/debug/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.vfEuvkHbeE/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5dc815523e98d889 -C extra-filename=-5dc815523e98d889 --out-dir /tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.vfEuvkHbeE/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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.vfEuvkHbeE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 191s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 191s Compiling gufo-common v0.1.3 191s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gufo_common CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/gufo-common-0.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/gufo-common-0.1.3/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common features used in gufo crates' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MPL-2.0 OR LGPL-2.1-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gufo-common CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gufo-rs/gufo' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.vfEuvkHbeE/target/debug/deps rustc --crate-name gufo_common --edition=2021 /tmp/tmp.vfEuvkHbeE/registry/gufo-common-0.1.3/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 --forbid=unsafe_code '--forbid=clippy::cast_possible_wrap' '--forbid=clippy::cast_possible_truncation' '--forbid=clippy::arithmetic_side_effects' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=365e28f69380192c -C extra-filename=-365e28f69380192c --out-dir /tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.vfEuvkHbeE/target/debug/deps --extern once_cell=/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern paste=/tmp/tmp.vfEuvkHbeE/target/debug/deps/libpaste-bec0c7568d224633.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.vfEuvkHbeE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 191s warning: `gufo-common` (lib) generated 1 warning (1 duplicate) 195s Compiling tracing-attributes v0.1.27 195s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_attributes CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/tracing-attributes-0.1.27 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/tracing-attributes-0.1.27/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors :Eliza Weisman :David Barsky ' CARGO_PKG_DESCRIPTION='Procedural macro attributes for automatically instrumenting functions. 195s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-attributes 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.27 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=27 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.vfEuvkHbeE/target/debug/deps rustc --crate-name tracing_attributes --edition=2018 /tmp/tmp.vfEuvkHbeE/registry/tracing-attributes-0.1.27/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await"))' -C metadata=d651f249cfb6fec4 -C extra-filename=-d651f249cfb6fec4 --out-dir /tmp/tmp.vfEuvkHbeE/target/debug/deps -L dependency=/tmp/tmp.vfEuvkHbeE/target/debug/deps --extern proc_macro2=/tmp/tmp.vfEuvkHbeE/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.vfEuvkHbeE/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.vfEuvkHbeE/target/debug/deps/libsyn-767ef8b32a93b940.rlib --extern proc_macro --cap-lints warn` 195s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 195s --> /tmp/tmp.vfEuvkHbeE/registry/tracing-attributes-0.1.27/src/lib.rs:73:5 195s | 195s 73 | private_in_public, 195s | ^^^^^^^^^^^^^^^^^ 195s | 195s = note: `#[warn(renamed_and_removed_lints)]` on by default 195s 197s warning: `tracing-attributes` (lib) generated 1 warning 197s Compiling tracing v0.1.40 197s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing CARGO_MANIFEST_DIR=/tmp/tmp.vfEuvkHbeE/registry/tracing-0.1.40 CARGO_MANIFEST_PATH=/tmp/tmp.vfEuvkHbeE/registry/tracing-0.1.40/Cargo.toml CARGO_PKG_AUTHORS='Eliza Weisman :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Application-level tracing for Rust. 197s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing 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.40 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=40 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.vfEuvkHbeE/target/debug/deps rustc --crate-name tracing --edition=2018 /tmp/tmp.vfEuvkHbeE/registry/tracing-0.1.40/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="attributes"' --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="tracing-attributes"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await", "attributes", "default", "log", "log-always", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "std", "tracing-attributes"))' -C metadata=6c097583f83e93f4 -C extra-filename=-6c097583f83e93f4 --out-dir /tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.vfEuvkHbeE/target/debug/deps --extern pin_project_lite=/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern tracing_attributes=/tmp/tmp.vfEuvkHbeE/target/debug/deps/libtracing_attributes-d651f249cfb6fec4.so --extern tracing_core=/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps/libtracing_core-4c8af7279fad1469.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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.vfEuvkHbeE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 197s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 197s --> /usr/share/cargo/registry/tracing-0.1.40/src/lib.rs:932:5 197s | 197s 932 | private_in_public, 197s | ^^^^^^^^^^^^^^^^^ 197s | 197s = note: `#[warn(renamed_and_removed_lints)]` on by default 197s 197s warning: `tracing` (lib) generated 2 warnings (1 duplicate) 197s Compiling gufo-jpeg v0.1.3 (/usr/share/cargo/registry/gufo-jpeg-0.1.3) 197s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gufo_jpeg CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gufo-jpeg-0.1.3 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gufo-jpeg-0.1.3/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Inspect JPEG image structure' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MPL-2.0 OR LGPL-2.1-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gufo-jpeg CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gufo-rs/gufo' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.vfEuvkHbeE/target/debug/deps rustc --crate-name gufo_jpeg --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 --forbid=unsafe_code '--forbid=clippy::cast_possible_wrap' '--forbid=clippy::cast_possible_truncation' '--forbid=clippy::arithmetic_side_effects' --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=276c0215b3ac641e -C extra-filename=-276c0215b3ac641e --out-dir /tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.vfEuvkHbeE/target/debug/deps --extern gufo_common=/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps/libgufo_common-365e28f69380192c.rlib --extern tracing=/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps/libtracing-6c097583f83e93f4.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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.vfEuvkHbeE/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 197s warning: `gufo-jpeg` (lib test) generated 1 warning (1 duplicate) 197s Finished `test` profile [unoptimized + debuginfo] target(s) in 8.72s 197s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gufo-jpeg-0.1.3 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gufo-jpeg-0.1.3/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Inspect JPEG image structure' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MPL-2.0 OR LGPL-2.1-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gufo-jpeg CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gufo-rs/gufo' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.vfEuvkHbeE/target/s390x-unknown-linux-gnu/debug/deps/gufo_jpeg-276c0215b3ac641e` 197s 197s running 0 tests 197s 197s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 197s 197s /tmp/autopkgtest.LP3ile/wrapper.sh: checking for leaked background processes... 197s /tmp/autopkgtest.LP3ile/wrapper.sh: waiting for tee/cat subprocesses... 197s /tmp/autopkgtest.LP3ile/wrapper.sh: cleaning up... 197s /tmp/autopkgtest.LP3ile/wrapper.sh: Exit status: 0 197s autopkgtest: DBG: testbed command exited with code 0 198s autopkgtest [20:45:07]: test librust-gufo-jpeg-dev:default: -----------------------] 198s autopkgtest: DBG: testbed executing test finished with exit status 0 198s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev%3Adefault-stdout /tmp/autopkgtest-work.51hl_qw4/out/librust-gufo-jpeg-dev%3Adefault-stdout 198s autopkgtest: DBG: got reply from testbed: ok 198s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev%3Adefault-stderr /tmp/autopkgtest-work.51hl_qw4/out/librust-gufo-jpeg-dev%3Adefault-stderr 198s autopkgtest: DBG: got reply from testbed: ok 198s autopkgtest [20:45:07]: test librust-gufo-jpeg-dev:default: - - - - - - - - - - results - - - - - - - - - - 198s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev%3Adefault-artifacts/ /tmp/autopkgtest-work.51hl_qw4/out/artifacts/ 198s librust-gufo-jpeg-dev:default PASS 198s autopkgtest: DBG: got reply from testbed: ok 198s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:default-artifacts', '/tmp/autopkgtest.LP3ile/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 198s autopkgtest: DBG: testbed command exited with code 0 198s autopkgtest [20:45:07]: test librust-gufo-jpeg-dev:: preparing testbed 198s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'], deps_new=['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'] 198s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 198s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-gufo-jpeg-dev'] 198s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-gufo-jpeg-dev 198s autopkgtest: DBG: can use apt-get on testbed: True 198s 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-gufo-jpeg-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 199s Reading package lists... 199s Building dependency tree... 199s Reading state information... 199s Starting pkgProblemResolver with broken count: 0 199s Starting 2 pkgProblemResolver with broken count: 0 199s Done 199s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 199s autopkgtest: DBG: testbed command exited with code 0 199s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-gufo-jpeg-dev'], kind short, sout pipe, serr pipe, env [] 199s autopkgtest: DBG: testbed command exited with code 0 199s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:-packages.all"], kind short, sout raw, serr pipe, env [] 199s autopkgtest: DBG: testbed command exited with code 0 199s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev%3A-packages.all /tmp/autopkgtest-work.51hl_qw4/out/librust-gufo-jpeg-dev%3A-packages.all 200s autopkgtest: DBG: got reply from testbed: ok 200s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.LP3ile/build.MkC/src'], kind short, sout raw, serr raw, env [] 200s autopkgtest: DBG: testbed command exited with code 0 200s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.LP3ile/build.MkC/src already exists 200s autopkgtest [20:45:09]: test librust-gufo-jpeg-dev:: /usr/share/cargo/bin/cargo-auto-test gufo-jpeg 0.1.3 --all-targets --no-default-features 200s autopkgtest [20:45:09]: test librust-gufo-jpeg-dev:: [----------------------- 200s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.LP3ile/wrapper.sh --debug --artifacts=/tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:-artifacts --chdir=/tmp/autopkgtest.LP3ile/build.MkC/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.LP3ile/librust-gufo-jpeg-dev:-stderr --stdout=/tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:-stdout --tmp=/tmp/autopkgtest.LP3ile/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 gufo-jpeg 0.1.3 --all-targets --no-default-features'"], kind test, sout raw, serr raw, env [] 200s /tmp/autopkgtest.LP3ile/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:-artifacts 200s /tmp/autopkgtest.LP3ile/wrapper.sh: changing to directory: /tmp/autopkgtest.LP3ile/build.MkC/src 200s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 200s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 200s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 200s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 200s /tmp/autopkgtest.LP3ile/wrapper.sh: setting environment: LANG=C.UTF-8 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LANGUAGE 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_ADDRESS 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_ALL 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_COLLATE 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_CTYPE 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_IDENTIFICATION 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_MEASUREMENT 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_MESSAGES 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_MONETARY 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_NAME 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_NUMERIC 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_PAPER 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_TELEPHONE 200s /tmp/autopkgtest.LP3ile/wrapper.sh: unsetting environment: LC_TIME 200s /tmp/autopkgtest.LP3ile/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 200s /tmp/autopkgtest.LP3ile/wrapper.sh: pretending to be a login shell 200s /tmp/autopkgtest.LP3ile/wrapper.sh: will write standard error to /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:-stderr 200s /tmp/autopkgtest.LP3ile/wrapper.sh: will write stdout to /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:-stdout 200s /tmp/autopkgtest.LP3ile/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.LP3ile/autopkgtest_tmp 200s /tmp/autopkgtest.LP3ile/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 200s /tmp/autopkgtest.LP3ile/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test gufo-jpeg 0.1.3 --all-targets --no-default-features 200s /tmp/autopkgtest.LP3ile/wrapper.sh: copying /tmp/tmp.JsPVi7zuQh/out to stdout and file: /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:-stdout 200s /tmp/autopkgtest.LP3ile/wrapper.sh: copying /tmp/tmp.JsPVi7zuQh/err to standard error and file: /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:-stdout 200s /tmp/autopkgtest.LP3ile/wrapper.sh: writing script pid 3096 to /tmp/autopkgtest_script_pid 200s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 200s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 200s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 200s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.a9lrQSJK6P/registry/ 200s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 200s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 200s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 200s 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'],) {} 200s Compiling proc-macro2 v1.0.92 200s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.a9lrQSJK6P/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.a9lrQSJK6P/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.a9lrQSJK6P/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.a9lrQSJK6P/target/debug/deps --cap-lints warn` 200s Compiling unicode-ident v1.0.13 200s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.a9lrQSJK6P/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.a9lrQSJK6P/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.a9lrQSJK6P/target/debug/deps -L dependency=/tmp/tmp.a9lrQSJK6P/target/debug/deps --cap-lints warn` 200s Compiling paste v1.0.15 200s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/paste-1.0.15 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/paste-1.0.15/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Macros for all your token pasting needs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=paste CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/paste' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.15 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.a9lrQSJK6P/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.a9lrQSJK6P/registry/paste-1.0.15/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=1df94c291fa3c93b -C extra-filename=-1df94c291fa3c93b --out-dir /tmp/tmp.a9lrQSJK6P/target/debug/build/paste-1df94c291fa3c93b -L dependency=/tmp/tmp.a9lrQSJK6P/target/debug/deps --cap-lints warn` 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.a9lrQSJK6P/target/debug/deps:/tmp/tmp.a9lrQSJK6P/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.a9lrQSJK6P/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.a9lrQSJK6P/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 201s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 201s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 201s Compiling once_cell v1.20.2 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/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.a9lrQSJK6P/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.a9lrQSJK6P/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.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.a9lrQSJK6P/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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.a9lrQSJK6P/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 201s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 201s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.a9lrQSJK6P/target/debug/deps OUT_DIR=/tmp/tmp.a9lrQSJK6P/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.a9lrQSJK6P/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.a9lrQSJK6P/target/debug/deps -L dependency=/tmp/tmp.a9lrQSJK6P/target/debug/deps --extern unicode_ident=/tmp/tmp.a9lrQSJK6P/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 201s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 201s | 201s = note: this feature is not stably supported; its behavior can change in the future 201s 201s warning: `once_cell` (lib) generated 1 warning 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/paste-1.0.15 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/paste-1.0.15/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Macros for all your token pasting needs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=paste CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/paste' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.15 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.a9lrQSJK6P/target/debug/deps:/tmp/tmp.a9lrQSJK6P/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.a9lrQSJK6P/target/debug/build/paste-93337411b64beae9/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.a9lrQSJK6P/target/debug/build/paste-1df94c291fa3c93b/build-script-build` 201s [paste 1.0.15] cargo:rerun-if-changed=build.rs 201s [paste 1.0.15] cargo:rustc-check-cfg=cfg(no_literal_fromstr) 201s [paste 1.0.15] cargo:rustc-check-cfg=cfg(feature, values("protocol_feature_paste")) 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=paste CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/paste-1.0.15 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/paste-1.0.15/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Macros for all your token pasting needs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=paste CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/paste' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.15 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.a9lrQSJK6P/target/debug/deps OUT_DIR=/tmp/tmp.a9lrQSJK6P/target/debug/build/paste-93337411b64beae9/out rustc --crate-name paste --edition=2018 /tmp/tmp.a9lrQSJK6P/registry/paste-1.0.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=bec0c7568d224633 -C extra-filename=-bec0c7568d224633 --out-dir /tmp/tmp.a9lrQSJK6P/target/debug/deps -L dependency=/tmp/tmp.a9lrQSJK6P/target/debug/deps --extern proc_macro --cap-lints warn --check-cfg 'cfg(no_literal_fromstr)' --check-cfg 'cfg(feature, values("protocol_feature_paste"))'` 201s Compiling quote v1.0.37 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.a9lrQSJK6P/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.a9lrQSJK6P/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.a9lrQSJK6P/target/debug/deps -L dependency=/tmp/tmp.a9lrQSJK6P/target/debug/deps --extern proc_macro2=/tmp/tmp.a9lrQSJK6P/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 202s Compiling tracing-core v0.1.32 202s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/tracing-core-0.1.32 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/tracing-core-0.1.32/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing. 202s ' 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.a9lrQSJK6P/target/debug/deps rustc --crate-name tracing_core --edition=2018 /tmp/tmp.a9lrQSJK6P/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="once_cell"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "once_cell", "std", "valuable"))' -C metadata=4c8af7279fad1469 -C extra-filename=-4c8af7279fad1469 --out-dir /tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.a9lrQSJK6P/target/debug/deps --extern once_cell=/tmp/tmp.a9lrQSJK6P/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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.a9lrQSJK6P/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 202s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 202s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/lib.rs:138:5 202s | 202s 138 | private_in_public, 202s | ^^^^^^^^^^^^^^^^^ 202s | 202s = note: `#[warn(renamed_and_removed_lints)]` on by default 202s 202s warning: unexpected `cfg` condition value: `alloc` 202s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:147:7 202s | 202s 147 | #[cfg(feature = "alloc")] 202s | ^^^^^^^^^^^^^^^^^ 202s | 202s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 202s = help: consider adding `alloc` as a feature in `Cargo.toml` 202s = note: see for more information about checking conditional configuration 202s = note: `#[warn(unexpected_cfgs)]` on by default 202s 202s warning: unexpected `cfg` condition value: `alloc` 202s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:150:7 202s | 202s 150 | #[cfg(feature = "alloc")] 202s | ^^^^^^^^^^^^^^^^^ 202s | 202s = note: expected values for `feature` are: `default`, `once_cell`, `std`, and `valuable` 202s = help: consider adding `alloc` as a feature in `Cargo.toml` 202s = note: see for more information about checking conditional configuration 202s 202s warning: unexpected `cfg` condition name: `tracing_unstable` 202s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:374:11 202s | 202s 374 | #[cfg(all(tracing_unstable, feature = "valuable"))] 202s | ^^^^^^^^^^^^^^^^ 202s | 202s = 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` 202s = help: consider using a Cargo feature instead 202s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 202s [lints.rust] 202s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 202s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 202s = note: see for more information about checking conditional configuration 202s 202s warning: unexpected `cfg` condition name: `tracing_unstable` 202s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:719:11 202s | 202s 719 | #[cfg(all(tracing_unstable, feature = "valuable"))] 202s | ^^^^^^^^^^^^^^^^ 202s | 202s = help: consider using a Cargo feature instead 202s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 202s [lints.rust] 202s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 202s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 202s = note: see for more information about checking conditional configuration 202s 202s warning: unexpected `cfg` condition name: `tracing_unstable` 202s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:722:11 202s | 202s 722 | #[cfg(all(tracing_unstable, feature = "valuable"))] 202s | ^^^^^^^^^^^^^^^^ 202s | 202s = help: consider using a Cargo feature instead 202s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 202s [lints.rust] 202s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 202s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 202s = note: see for more information about checking conditional configuration 202s 202s warning: unexpected `cfg` condition name: `tracing_unstable` 202s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:730:11 202s | 202s 730 | #[cfg(all(tracing_unstable, feature = "valuable"))] 202s | ^^^^^^^^^^^^^^^^ 202s | 202s = help: consider using a Cargo feature instead 202s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 202s [lints.rust] 202s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 202s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 202s = note: see for more information about checking conditional configuration 202s 202s warning: unexpected `cfg` condition name: `tracing_unstable` 202s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:733:11 202s | 202s 733 | #[cfg(all(tracing_unstable, feature = "valuable"))] 202s | ^^^^^^^^^^^^^^^^ 202s | 202s = help: consider using a Cargo feature instead 202s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 202s [lints.rust] 202s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 202s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 202s = note: see for more information about checking conditional configuration 202s 202s warning: unexpected `cfg` condition name: `tracing_unstable` 202s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/field.rs:270:15 202s | 202s 270 | #[cfg(all(tracing_unstable, feature = "valuable"))] 202s | ^^^^^^^^^^^^^^^^ 202s | 202s = help: consider using a Cargo feature instead 202s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 202s [lints.rust] 202s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tracing_unstable)'] } 202s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tracing_unstable)");` to the top of the `build.rs` 202s = note: see for more information about checking conditional configuration 202s 202s Compiling syn v2.0.96 202s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.a9lrQSJK6P/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.a9lrQSJK6P/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=767ef8b32a93b940 -C extra-filename=-767ef8b32a93b940 --out-dir /tmp/tmp.a9lrQSJK6P/target/debug/deps -L dependency=/tmp/tmp.a9lrQSJK6P/target/debug/deps --extern proc_macro2=/tmp/tmp.a9lrQSJK6P/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.a9lrQSJK6P/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.a9lrQSJK6P/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 202s warning: creating a shared reference to mutable static is discouraged 202s --> /usr/share/cargo/registry/tracing-core-0.1.32/src/dispatcher.rs:458:9 202s | 202s 458 | &GLOBAL_DISPATCH 202s | ^^^^^^^^^^^^^^^^ shared reference to mutable static 202s | 202s = note: for more information, see 202s = 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 202s = note: `#[warn(static_mut_refs)]` on by default 202s help: use `&raw const` instead to create a raw pointer 202s | 202s 458 | &raw const GLOBAL_DISPATCH 202s | ~~~~~~~~~~ 202s 202s warning: `tracing-core` (lib) generated 11 warnings (1 duplicate) 202s Compiling pin-project-lite v0.2.13 202s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/pin-project-lite-0.2.13 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/pin-project-lite-0.2.13/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros. 202s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_RUST_VERSION=1.37 CARGO_PKG_VERSION=0.2.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.a9lrQSJK6P/target/debug/deps rustc --crate-name pin_project_lite --edition=2018 /tmp/tmp.a9lrQSJK6P/registry/pin-project-lite-0.2.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5dc815523e98d889 -C extra-filename=-5dc815523e98d889 --out-dir /tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.a9lrQSJK6P/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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.a9lrQSJK6P/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 202s warning: `pin-project-lite` (lib) generated 1 warning (1 duplicate) 202s Compiling gufo-common v0.1.3 202s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gufo_common CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/gufo-common-0.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/gufo-common-0.1.3/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Common features used in gufo crates' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MPL-2.0 OR LGPL-2.1-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gufo-common CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gufo-rs/gufo' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.a9lrQSJK6P/target/debug/deps rustc --crate-name gufo_common --edition=2021 /tmp/tmp.a9lrQSJK6P/registry/gufo-common-0.1.3/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 --forbid=unsafe_code '--forbid=clippy::cast_possible_wrap' '--forbid=clippy::cast_possible_truncation' '--forbid=clippy::arithmetic_side_effects' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde"))' -C metadata=365e28f69380192c -C extra-filename=-365e28f69380192c --out-dir /tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.a9lrQSJK6P/target/debug/deps --extern once_cell=/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern paste=/tmp/tmp.a9lrQSJK6P/target/debug/deps/libpaste-bec0c7568d224633.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.a9lrQSJK6P/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 202s warning: `gufo-common` (lib) generated 1 warning (1 duplicate) 207s Compiling tracing-attributes v0.1.27 207s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing_attributes CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/tracing-attributes-0.1.27 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/tracing-attributes-0.1.27/Cargo.toml CARGO_PKG_AUTHORS='Tokio Contributors :Eliza Weisman :David Barsky ' CARGO_PKG_DESCRIPTION='Procedural macro attributes for automatically instrumenting functions. 207s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-attributes 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.27 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=27 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.a9lrQSJK6P/target/debug/deps rustc --crate-name tracing_attributes --edition=2018 /tmp/tmp.a9lrQSJK6P/registry/tracing-attributes-0.1.27/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await"))' -C metadata=d651f249cfb6fec4 -C extra-filename=-d651f249cfb6fec4 --out-dir /tmp/tmp.a9lrQSJK6P/target/debug/deps -L dependency=/tmp/tmp.a9lrQSJK6P/target/debug/deps --extern proc_macro2=/tmp/tmp.a9lrQSJK6P/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.a9lrQSJK6P/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.a9lrQSJK6P/target/debug/deps/libsyn-767ef8b32a93b940.rlib --extern proc_macro --cap-lints warn` 207s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 207s --> /tmp/tmp.a9lrQSJK6P/registry/tracing-attributes-0.1.27/src/lib.rs:73:5 207s | 207s 73 | private_in_public, 207s | ^^^^^^^^^^^^^^^^^ 207s | 207s = note: `#[warn(renamed_and_removed_lints)]` on by default 207s 208s warning: `tracing-attributes` (lib) generated 1 warning 208s Compiling tracing v0.1.40 208s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tracing CARGO_MANIFEST_DIR=/tmp/tmp.a9lrQSJK6P/registry/tracing-0.1.40 CARGO_MANIFEST_PATH=/tmp/tmp.a9lrQSJK6P/registry/tracing-0.1.40/Cargo.toml CARGO_PKG_AUTHORS='Eliza Weisman :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Application-level tracing for Rust. 208s ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing 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.40 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=40 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.a9lrQSJK6P/target/debug/deps rustc --crate-name tracing --edition=2018 /tmp/tmp.a9lrQSJK6P/registry/tracing-0.1.40/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="attributes"' --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="tracing-attributes"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-await", "attributes", "default", "log", "log-always", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "std", "tracing-attributes"))' -C metadata=6c097583f83e93f4 -C extra-filename=-6c097583f83e93f4 --out-dir /tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.a9lrQSJK6P/target/debug/deps --extern pin_project_lite=/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps/libpin_project_lite-5dc815523e98d889.rmeta --extern tracing_attributes=/tmp/tmp.a9lrQSJK6P/target/debug/deps/libtracing_attributes-d651f249cfb6fec4.so --extern tracing_core=/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps/libtracing_core-4c8af7279fad1469.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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.a9lrQSJK6P/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 208s warning: lint `private_in_public` has been removed: replaced with another group of lints, see RFC for more information 208s --> /usr/share/cargo/registry/tracing-0.1.40/src/lib.rs:932:5 208s | 208s 932 | private_in_public, 208s | ^^^^^^^^^^^^^^^^^ 208s | 208s = note: `#[warn(renamed_and_removed_lints)]` on by default 208s 209s warning: `tracing` (lib) generated 2 warnings (1 duplicate) 209s Compiling gufo-jpeg v0.1.3 (/usr/share/cargo/registry/gufo-jpeg-0.1.3) 209s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=gufo_jpeg CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gufo-jpeg-0.1.3 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gufo-jpeg-0.1.3/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Inspect JPEG image structure' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MPL-2.0 OR LGPL-2.1-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gufo-jpeg CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gufo-rs/gufo' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.a9lrQSJK6P/target/debug/deps rustc --crate-name gufo_jpeg --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 --forbid=unsafe_code '--forbid=clippy::cast_possible_wrap' '--forbid=clippy::cast_possible_truncation' '--forbid=clippy::arithmetic_side_effects' --test --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=276c0215b3ac641e -C extra-filename=-276c0215b3ac641e --out-dir /tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.a9lrQSJK6P/target/debug/deps --extern gufo_common=/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps/libgufo_common-365e28f69380192c.rlib --extern tracing=/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps/libtracing-6c097583f83e93f4.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/gufo-jpeg-0.1.3=/usr/share/cargo/registry/gufo-jpeg-0.1.3 --remap-path-prefix /tmp/tmp.a9lrQSJK6P/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 209s warning: `gufo-jpeg` (lib test) generated 1 warning (1 duplicate) 209s Finished `test` profile [unoptimized + debuginfo] target(s) in 8.89s 209s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/gufo-jpeg-0.1.3 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/gufo-jpeg-0.1.3/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Inspect JPEG image structure' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MPL-2.0 OR LGPL-2.1-or-later' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=gufo-jpeg CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/gufo-rs/gufo' CARGO_PKG_RUST_VERSION=1.75 CARGO_PKG_VERSION=0.1.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.a9lrQSJK6P/target/s390x-unknown-linux-gnu/debug/deps/gufo_jpeg-276c0215b3ac641e` 209s 209s running 0 tests 209s 209s test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s 209s 209s /tmp/autopkgtest.LP3ile/wrapper.sh: checking for leaked background processes... 209s /tmp/autopkgtest.LP3ile/wrapper.sh: waiting for tee/cat subprocesses... 209s /tmp/autopkgtest.LP3ile/wrapper.sh: cleaning up... 209s /tmp/autopkgtest.LP3ile/wrapper.sh: Exit status: 0 209s autopkgtest: DBG: testbed command exited with code 0 209s autopkgtest [20:45:18]: test librust-gufo-jpeg-dev:: -----------------------] 209s autopkgtest: DBG: testbed executing test finished with exit status 0 209s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev%3A-stdout /tmp/autopkgtest-work.51hl_qw4/out/librust-gufo-jpeg-dev%3A-stdout 210s autopkgtest: DBG: got reply from testbed: ok 210s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev%3A-stderr /tmp/autopkgtest-work.51hl_qw4/out/librust-gufo-jpeg-dev%3A-stderr 210s autopkgtest: DBG: got reply from testbed: ok 210s librust-gufo-jpeg-dev: PASS 210s autopkgtest [20:45:19]: test librust-gufo-jpeg-dev:: - - - - - - - - - - results - - - - - - - - - - 210s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev%3A-artifacts/ /tmp/autopkgtest-work.51hl_qw4/out/artifacts/ 210s autopkgtest: DBG: got reply from testbed: ok 210s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.LP3ile/librust-gufo-jpeg-dev:-artifacts', '/tmp/autopkgtest.LP3ile/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 210s autopkgtest: DBG: testbed command exited with code 0 210s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 210s autopkgtest [20:45:19]: @@@@@@@@@@@@@@@@@@@@ summary 210s rust-gufo-jpeg:@ PASS 210s librust-gufo-jpeg-dev:default PASS 210s librust-gufo-jpeg-dev: PASS 210s autopkgtest: DBG: testbed stop 210s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.LP3ile 210s autopkgtest: DBG: sending command to testbed: close 228s autopkgtest: DBG: got reply from testbed: ok 228s autopkgtest: DBG: sending command to testbed: quit 228s nova [W] Using flock in prodstack6-s390x 228s Creating nova instance adt-plucky-s390x-rust-gufo-jpeg-20250212-204149-juju-7f2275-prod-proposed-migration-environment-15-3bc057cf-220a-44aa-927f-c0091ce8b367 from image adt/ubuntu-plucky-s390x-server-20250212.img (UUID bc0c6a1e-2159-4845-8bbd-54291ac11f45)... 228s nova [W] Timed out waiting for 943e0572-4867-4150-97c4-a00d8869de02 to get deleted.