0s autopkgtest: DBG: testbed init 0s autopkgtest [09:20:24]: starting date and time: 2025-02-07 09:20:24+0000 0s autopkgtest [09:20:24]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [09:20:24]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.og233o7x/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-native-tls --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-5.secgroup --name adt-plucky-s390x-rust-native-tls-20250207-092024-juju-7f2275-prod-proposed-migration-environment-15-63452940-a03c-49d5-8ab9-164054225b50 --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 64s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.UeZYpm 64s autopkgtest: DBG: sending command to testbed: print-execute-command 64s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.tnrigld0/runcmd 64s autopkgtest: DBG: sending command to testbed: capabilities 64s autopkgtest: DBG: got reply from testbed: ok isolation-machine suggested-normal-user=ubuntu revert-full-system reboot revert root-on-testbed 64s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'suggested-normal-user=ubuntu', 'revert-full-system', 'reboot', 'revert', 'root-on-testbed', 'has_internet'] 64s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.UeZYpm'], kind short, sout raw, serr pipe, env [] 64s autopkgtest: DBG: testbed command exited with code 0 64s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.UeZYpm/wrapper.sh 64s autopkgtest: DBG: got reply from testbed: ok 64s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.UeZYpm/wrapper.sh'], kind short, sout raw, serr pipe, env [] 64s autopkgtest: DBG: testbed command exited with code 0 64s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest [09:21:29]: testbed dpkg architecture: s390x 65s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest [09:21:29]: testbed apt version: 2.9.27ubuntu1 65s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest: DBG: testbed has eatmydata 65s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest [09:21:29]: @@@@@@@@@@@@@@@@@@@@ test bed setup 65s 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 [] 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest [09:21:29]: testbed release detected to be: None 65s 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 [] 65s autopkgtest: DBG: testbed command exited with code 0 65s 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 [] 66s autopkgtest: DBG: testbed command exited with code 0 66s autopkgtest: DBG: adding APT source: Types: deb deb-src 66s URIs: http://ftpmaster.internal/ubuntu/ 66s Suites: plucky-proposed 66s Components: main restricted universe multiverse 66s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 66s 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 [] 66s autopkgtest: DBG: testbed command exited with code 0 66s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 66s Package: * 66s Pin: release plucky-proposed 66s Pin-Priority: 500 66s 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 [] 66s autopkgtest: DBG: testbed command exited with code 0 66s autopkgtest [09:21:30]: updating testbed package index (apt update) 66s 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'] 67s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 67s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 67s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 67s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 67s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [57.7 kB] 67s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [2428 B] 67s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [816 kB] 67s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [12.4 kB] 67s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [83.7 kB] 67s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [728 kB] 67s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [2680 B] 67s Fetched 1813 kB in 1s (1920 kB/s) 68s Reading package lists... 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 68s Package: * 68s Pin: release plucky-proposed 68s Pin-Priority: 100 68s 68s Package: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any 68s Pin: release plucky-proposed 68s Pin-Priority: 995 68s 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 [] 68s autopkgtest: DBG: testbed command exited with code 0 68s 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.UeZYpm/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 68s autopkgtest: DBG: testbed command exited with code 0 68s 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'] 68s + lsb_release --codename --short 68s + RELEASE=plucky 68s + cat 68s + [ plucky != trusty ] 68s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 68s Reading package lists... 68s Building dependency tree... 68s Reading state information... 69s Calculating upgrade... 69s The following packages were automatically installed and are no longer required: 69s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 69s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 69s linux-tools-6.11.0-8-generic 69s Use 'sudo apt autoremove' to remove them. 69s The following packages will be upgraded: 69s gir1.2-glib-2.0 libglib2.0-0t64 libglib2.0-data libnetplan1 69s libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 69s netplan-generator netplan.io python3-idna python3-netplan python3.12-gdbm 69s 12 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 69s Need to get 7601 kB of archives. 69s After this operation, 49.2 kB of additional disk space will be used. 69s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x gir1.2-glib-2.0 s390x 2.83.3-2 [182 kB] 69s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-0t64 s390x 2.83.3-2 [1583 kB] 70s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libglib2.0-data all 2.83.3-2 [52.7 kB] 70s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x netplan-generator s390x 1.1.2-2ubuntu1 [61.3 kB] 70s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3-netplan s390x 1.1.2-2ubuntu1 [24.4 kB] 70s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x netplan.io s390x 1.1.2-2ubuntu1 [68.6 kB] 70s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libnetplan1 s390x 1.1.2-2ubuntu1 [134 kB] 70s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12t64 s390x 3.12.9-1 [2508 kB] 70s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 70s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 71s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-gdbm s390x 3.12.9-1 [30.6 kB] 71s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x python3-idna all 3.10-1 [47.4 kB] 71s Fetched 7601 kB in 2s (4151 kB/s) 71s (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 ... 80957 files and directories currently installed.) 71s Preparing to unpack .../00-gir1.2-glib-2.0_2.83.3-2_s390x.deb ... 71s Unpacking gir1.2-glib-2.0:s390x (2.83.3-2) over (2.83.3-1) ... 71s Preparing to unpack .../01-libglib2.0-0t64_2.83.3-2_s390x.deb ... 71s Unpacking libglib2.0-0t64:s390x (2.83.3-2) over (2.83.3-1) ... 71s Preparing to unpack .../02-libglib2.0-data_2.83.3-2_all.deb ... 71s Unpacking libglib2.0-data (2.83.3-2) over (2.83.3-1) ... 71s Preparing to unpack .../03-netplan-generator_1.1.2-2ubuntu1_s390x.deb ... 71s Adding 'diversion of /lib/systemd/system-generators/netplan to /lib/systemd/system-generators/netplan.usr-is-merged by netplan-generator' 71s Unpacking netplan-generator (1.1.2-2ubuntu1) over (1.1.2-1) ... 71s Preparing to unpack .../04-python3-netplan_1.1.2-2ubuntu1_s390x.deb ... 71s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 71s for fn in glob1(directory, "%s.*" % fname): 71s Unpacking python3-netplan (1.1.2-2ubuntu1) over (1.1.2-1) ... 71s Preparing to unpack .../05-netplan.io_1.1.2-2ubuntu1_s390x.deb ... 71s Unpacking netplan.io (1.1.2-2ubuntu1) over (1.1.2-1) ... 71s Preparing to unpack .../06-libnetplan1_1.1.2-2ubuntu1_s390x.deb ... 71s Unpacking libnetplan1:s390x (1.1.2-2ubuntu1) over (1.1.2-1) ... 71s Preparing to unpack .../07-libpython3.12t64_3.12.9-1_s390x.deb ... 71s Unpacking libpython3.12t64:s390x (3.12.9-1) over (3.12.8-5) ... 71s Preparing to unpack .../08-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 71s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) over (3.12.8-5) ... 71s Preparing to unpack .../09-libpython3.12-minimal_3.12.9-1_s390x.deb ... 71s Unpacking libpython3.12-minimal:s390x (3.12.9-1) over (3.12.8-5) ... 71s Preparing to unpack .../10-python3.12-gdbm_3.12.9-1_s390x.deb ... 71s Unpacking python3.12-gdbm (3.12.9-1) over (3.12.8-5) ... 71s Preparing to unpack .../11-python3-idna_3.10-1_all.deb ... 71s /usr/bin/py3clean:101: DeprecationWarning: glob.glob1 is deprecated and will be removed in Python 3.15. Use glob.glob and pass a directory to its root_dir argument instead. 71s for fn in glob1(directory, "%s.*" % fname): 71s Unpacking python3-idna (3.10-1) over (3.8-2) ... 71s Setting up python3.12-gdbm (3.12.9-1) ... 71s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 71s Setting up libglib2.0-0t64:s390x (2.83.3-2) ... 71s No schema files found: doing nothing. 71s Setting up libglib2.0-data (2.83.3-2) ... 71s Setting up python3-idna (3.10-1) ... 72s Setting up gir1.2-glib-2.0:s390x (2.83.3-2) ... 72s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 72s Setting up libnetplan1:s390x (1.1.2-2ubuntu1) ... 72s Setting up libpython3.12t64:s390x (3.12.9-1) ... 72s Setting up python3-netplan (1.1.2-2ubuntu1) ... 72s Setting up netplan-generator (1.1.2-2ubuntu1) ... 72s Removing 'diversion of /lib/systemd/system-generators/netplan to /lib/systemd/system-generators/netplan.usr-is-merged by netplan-generator' 72s Setting up netplan.io (1.1.2-2ubuntu1) ... 72s Processing triggers for libc-bin (2.40-4ubuntu1) ... 72s Processing triggers for man-db (2.13.0-1) ... 72s Processing triggers for dbus (1.14.10-4ubuntu5) ... 72s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 72s + /usr/lib/apt/apt-helper analyze-pattern ?true 72s + uname -r 72s + sed s/\./\\./g 72s + running_kernel_pattern=^linux-.*6\.12\.0-12-generic.* 72s + apt list ?obsolete 72s + tail -n+2+ cut -d/ -f1 72s 72s + grep -v ^linux-.*6\.12\.0-12-generic.* 73s + true 73s + obsolete_pkgs= 73s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 73s Reading package lists... 73s Building dependency tree... 73s Reading state information... 73s The following packages will be REMOVED: 73s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 73s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 73s linux-tools-6.11.0-8-generic* 73s 0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded. 73s After this operation, 143 MB disk space will be freed. 73s (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 ... 80957 files and directories currently installed.) 73s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 73s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 74s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 74s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 74s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 74s (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 ... 56550 files and directories currently installed.) 74s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 74s + grep -q trusty /etc/lsb-release 74s + [ ! -d /usr/share/doc/unattended-upgrades ] 74s + [ ! -d /usr/share/doc/lxd ] 74s + [ ! -d /usr/share/doc/lxd-client ] 74s + [ ! -d /usr/share/doc/snapd ] 74s + type iptables 74s + cat 74s + chmod 755 /etc/rc.local 74s + . /etc/rc.local 74s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 74s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 74s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 74s + uname -m 74s + [ s390x = ppc64le ] 74s + [ -d /run/systemd/system ] 74s + systemd-detect-virt --quiet --vm 74s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 74s + cat 74s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 74s + echo COMPRESS=lz4 74s autopkgtest: DBG: testbed command exited with code 0 74s autopkgtest [09:21:38]: upgrading testbed (apt dist-upgrade and autopurge) 74s 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'] 75s Reading package lists... 75s Building dependency tree... 75s Reading state information... 75s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 75s Starting 2 pkgProblemResolver with broken count: 0 75s Done 75s Entering ResolveByKeep 75s 75s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 75s autopkgtest: DBG: testbed command exited with code 0 75s 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'] 76s Reading package lists... 76s Building dependency tree... 76s Reading state information... 76s Starting pkgProblemResolver with broken count: 0 76s Starting 2 pkgProblemResolver with broken count: 0 76s Done 76s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 76s autopkgtest: DBG: testbed command exited with code 0 76s 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.UeZYpm/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 76s autopkgtest: DBG: testbed command exited with code 1 76s autopkgtest [09:21:40]: rebooting testbed after setup commands that affected boot 76s autopkgtest: DBG: sending command to testbed: reboot 94s autopkgtest: DBG: got reply from testbed: ok 94s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 94s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.UeZYpm'], kind short, sout raw, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.UeZYpm/autopkgtest-reboot 94s autopkgtest: DBG: got reply from testbed: ok 94s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.UeZYpm/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.UeZYpm/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.UeZYpm/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.UeZYpm'], kind short, sout raw, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.UeZYpm/autopkgtest-reboot-prepare 95s autopkgtest: DBG: got reply from testbed: ok 95s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.UeZYpm/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.UeZYpm/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 95s autopkgtest: DBG: testbed command exited with code 0 95s autopkgtest [09:21:59]: testbed running kernel: Linux 6.12.0-12-generic #12-Ubuntu SMP Wed Jan 22 15:18:24 UTC 2025 95s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.UeZYpm/testbed-packages"], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.UeZYpm/testbed-packages /tmp/autopkgtest-work.og233o7x/out/testbed-packages 96s autopkgtest: DBG: got reply from testbed: ok 96s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 96s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.UeZYpm'], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.UeZYpm/autopkgtest-reboot 96s autopkgtest: DBG: got reply from testbed: ok 96s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.UeZYpm/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.UeZYpm/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.UeZYpm/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.UeZYpm'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.UeZYpm/autopkgtest-reboot-prepare 97s autopkgtest: DBG: got reply from testbed: ok 97s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.UeZYpm/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.UeZYpm/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: Binaries: initialising 98s autopkgtest [09:22:02]: @@@@@@@@@@@@@@@@@@@@ apt-source rust-native-tls 98s autopkgtest: DBG: blame += rust-native-tls 98s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 98s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rust-native-tls'], kind short, sout pipe, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-native-tls-dev$'], kind short, sout pipe, serr raw, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-native-tls-dev=0.2.11-2'], kind short, sout pipe, serr raw, env [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: install_deps: deps_new=[] 99s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 99s autopkgtest: DBG: testbed command exited with code 0 99s 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.UeZYpm/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rust-native-tls=0.2.11-2 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-native-tls_*.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'] 99s + cd / 99s + mktemp -d /tmp/autopkgtest.UeZYpm/build.XXX 99s + builddir=/tmp/autopkgtest.UeZYpm/build.R5c 99s + cd /tmp/autopkgtest.UeZYpm/build.R5c 99s + apt-get source -d -q --only-source rust-native-tls=0.2.11-2 99s + OUT=Reading package lists... 99s NOTICE: 'rust-native-tls' packaging is maintained in the 'Git' version control system at: 99s https://salsa.debian.org/rust-team/debcargo-conf.git [src/native-tls] 99s Please use: 99s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/native-tls] 99s to retrieve the latest (possibly unreleased) updates to the package. 99s Need to get 50.1 kB of source archives. 99s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-native-tls 0.2.11-2 (dsc) [2666 B] 99s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-native-tls 0.2.11-2 (tar) [29.0 kB] 99s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-native-tls 0.2.11-2 (diff) [18.4 kB] 99s Fetched 50.1 kB in 0s (147 kB/s) 99s Download complete and in download only mode 99s + [ -n ] 99s + echo Reading package lists... 99s NOTICE: 'rust-native-tls' packaging is maintained in the 'Git' version control system at: 99s https://salsa.debian.org/rust-team/debcargo-conf.git [src/native-tls] 99s Please use: 99s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/native-tls] 99s to retrieve the latest (possibly unreleased) updates to the package. 99s Need to get 50.1 kB of source archives. 99s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-native-tls 0.2.11-2 (dsc) [2666 B] 99s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-native-tls 0.2.11-2 (tar) [29.0 kB] 99s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-native-tls 0.2.11-2 (diff) [18.4 kB] 99s Fetched 50.1 kB in 0s (147 kB/s) 99s Download complete and in download only mode 99s + grep ^Get: 99s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-native-tls 0.2.11-2 (dsc) [2666 B] 99s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-native-tls 0.2.11-2 (tar) [29.0 kB] 99s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-native-tls 0.2.11-2 (diff) [18.4 kB] 99s + dpkg-source -x rust-native-tls_0.2.11-2.dsc src 99s gpgv: Signature made Fri Jun 16 20:07:43 2023 UTC 99s gpgv: using RSA key B60DB5994D39BEC4D1A95CCF7E6528DA752F1BE1 99s gpgv: Can't check signature: No public key 99s dpkg-source: warning: cannot verify inline signature for ./rust-native-tls_0.2.11-2.dsc: no acceptable signature found 99s + chmod -R a+rX . 99s + cd src/. 99s + pwd 99s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest [09:22:03]: testing package rust-native-tls version 0.2.11-2 99s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.UeZYpm/build.R5c/src/debian/ /tmp/autopkgtest-work.og233o7x/out/pkg/debian/ 100s autopkgtest: DBG: got reply from testbed: ok 100s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 100s autopkgtest: DBG: processing dependency librust-base64-0.21+default-dev 100s autopkgtest: DBG: processing dependency librust-hex-0.4+default-dev 100s autopkgtest: DBG: processing dependency librust-pem-1+default-dev 100s autopkgtest: DBG: processing dependency @ 100s autopkgtest: DBG: synthesised dependency librust-native-tls-dev 100s autopkgtest: DBG: Test defined: name rust-native-tls:@ path None command "/usr/share/cargo/bin/cargo-auto-test native-tls 0.2.11 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-native-tls:@'] depends ['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 100s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 100s autopkgtest: DBG: processing dependency librust-base64-0.21+default-dev 100s autopkgtest: DBG: processing dependency librust-hex-0.4+default-dev 100s autopkgtest: DBG: processing dependency librust-pem-1+default-dev 100s autopkgtest: DBG: processing dependency @ 100s autopkgtest: DBG: synthesised dependency librust-native-tls-dev 100s autopkgtest: DBG: Test defined: name librust-native-tls-dev:alpn path None command "/usr/share/cargo/bin/cargo-auto-test native-tls 0.2.11 --all-targets --no-default-features --features alpn" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-native-tls-dev:alpn'] depends ['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 100s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 100s autopkgtest: DBG: processing dependency librust-base64-0.21+default-dev 100s autopkgtest: DBG: processing dependency librust-hex-0.4+default-dev 100s autopkgtest: DBG: processing dependency librust-pem-1+default-dev 100s autopkgtest: DBG: processing dependency @ 100s autopkgtest: DBG: synthesised dependency librust-native-tls-dev 100s autopkgtest: DBG: Test defined: name librust-native-tls-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test native-tls 0.2.11 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-native-tls-dev:default'] depends ['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 100s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 100s autopkgtest: DBG: processing dependency librust-base64-0.21+default-dev 100s autopkgtest: DBG: processing dependency librust-hex-0.4+default-dev 100s autopkgtest: DBG: processing dependency librust-pem-1+default-dev 100s autopkgtest: DBG: processing dependency @ 100s autopkgtest: DBG: synthesised dependency librust-native-tls-dev 100s autopkgtest: DBG: Test defined: name librust-native-tls-dev: path None command "/usr/share/cargo/bin/cargo-auto-test native-tls 0.2.11 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-native-tls-dev:'] depends ['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 100s autopkgtest [09:22:04]: build not needed 100s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.UeZYpm/build.R5c/src/ /tmp/autopkgtest-work.og233o7x/out/tests-tree/ 100s autopkgtest: DBG: got reply from testbed: ok 100s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 100s autopkgtest: DBG: processing dependency librust-base64-0.21+default-dev 100s autopkgtest: DBG: processing dependency librust-hex-0.4+default-dev 100s autopkgtest: DBG: processing dependency librust-pem-1+default-dev 100s autopkgtest: DBG: processing dependency @ 100s autopkgtest: DBG: synthesised dependency librust-native-tls-dev 100s autopkgtest: DBG: Test defined: name rust-native-tls:@ path None command "/usr/share/cargo/bin/cargo-auto-test native-tls 0.2.11 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-native-tls:@'] depends ['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 100s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 100s autopkgtest: DBG: processing dependency librust-base64-0.21+default-dev 100s autopkgtest: DBG: processing dependency librust-hex-0.4+default-dev 100s autopkgtest: DBG: processing dependency librust-pem-1+default-dev 100s autopkgtest: DBG: processing dependency @ 100s autopkgtest: DBG: synthesised dependency librust-native-tls-dev 100s autopkgtest: DBG: Test defined: name librust-native-tls-dev:alpn path None command "/usr/share/cargo/bin/cargo-auto-test native-tls 0.2.11 --all-targets --no-default-features --features alpn" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-native-tls-dev:alpn'] depends ['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 100s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 100s autopkgtest: DBG: processing dependency librust-base64-0.21+default-dev 100s autopkgtest: DBG: processing dependency librust-hex-0.4+default-dev 100s autopkgtest: DBG: processing dependency librust-pem-1+default-dev 100s autopkgtest: DBG: processing dependency @ 100s autopkgtest: DBG: synthesised dependency librust-native-tls-dev 100s autopkgtest: DBG: Test defined: name librust-native-tls-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test native-tls 0.2.11 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-native-tls-dev:default'] depends ['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 100s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 100s autopkgtest: DBG: processing dependency librust-base64-0.21+default-dev 100s autopkgtest: DBG: processing dependency librust-hex-0.4+default-dev 100s autopkgtest: DBG: processing dependency librust-pem-1+default-dev 100s autopkgtest: DBG: processing dependency @ 100s autopkgtest: DBG: synthesised dependency librust-native-tls-dev 100s autopkgtest: DBG: Test defined: name librust-native-tls-dev: path None command "/usr/share/cargo/bin/cargo-auto-test native-tls 0.2.11 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-native-tls-dev:'] depends ['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 100s autopkgtest [09:22:04]: test rust-native-tls:@: preparing testbed 100s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 100s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 100s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 100s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-base64-0.21+default-dev, librust-hex-0.4+default-dev, librust-pem-1+default-dev, librust-native-tls-dev 100s autopkgtest: DBG: can use apt-get on testbed: True 100s 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-base64-0.21+default-dev, librust-hex-0.4+default-dev, librust-pem-1+default-dev, librust-native-tls-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 101s Reading package lists... 101s Building dependency tree... 101s Reading state information... 101s Starting pkgProblemResolver with broken count: 1 101s Starting 2 pkgProblemResolver with broken count: 1 101s Investigating (0) satisfy:command-line:s390x < none -> 1 @un puN Ib > 101s Broken satisfy:command-line:s390x Depends on dh-cargo:s390x < none | 31ubuntu4 @un uH > (>= 18) 101s Considering dh-cargo:s390x 0 as a solution to satisfy:command-line:s390x 9998 101s Re-Instated libstd-rust-1.84:s390x 101s Re-Instated libstd-rust-1.84-dev:s390x 101s Re-Instated libisl23:s390x 101s Re-Instated libmpc3:s390x 101s Re-Instated cpp-14-s390x-linux-gnu:s390x 101s Re-Instated cpp-14:s390x 101s Re-Instated cpp-s390x-linux-gnu:s390x 101s Re-Instated cpp:s390x 101s Re-Instated libcc1-0:s390x 101s Re-Instated libgomp1:s390x 101s Re-Instated libitm1:s390x 101s Re-Instated libasan8:s390x 101s Re-Instated libubsan1:s390x 101s Re-Instated libgcc-14-dev:s390x 101s Re-Instated gcc-14-s390x-linux-gnu:s390x 101s Re-Instated gcc-14:s390x 101s Re-Instated gcc-s390x-linux-gnu:s390x 101s Re-Instated gcc:s390x 101s Re-Instated rustc-1.84:s390x 101s Re-Instated rustc:s390x 101s Re-Instated libgit2-1.9:s390x 101s Re-Instated cargo-1.84:s390x 101s Re-Instated cargo:s390x 101s Re-Instated autotools-dev:s390x 101s Re-Instated m4:s390x 101s Re-Instated autoconf:s390x 101s Re-Instated automake:s390x 101s Re-Instated autopoint:s390x 101s Re-Instated libdebhelper-perl:s390x 101s Re-Instated libtool:s390x 101s Re-Instated dh-autoreconf:s390x 101s Re-Instated libarchive-zip-perl:s390x 101s Re-Instated libfile-stripnondeterminism-perl:s390x 101s Re-Instated dh-strip-nondeterminism:s390x 101s Re-Instated debugedit:s390x 101s Re-Instated dwz:s390x 101s Re-Instated gettext:s390x 101s Re-Instated intltool-debian:s390x 101s Re-Instated po-debconf:s390x 101s Re-Instated debhelper:s390x 101s Re-Instated dh-cargo-tools:s390x 101s Re-Instated dh-cargo:s390x 101s Broken satisfy:command-line:s390x Depends on librust-base64-0.21+default-dev:s390x < none @un H > 101s Broken satisfy:command-line:s390x Depends on librust-hex-0.4+default-dev:s390x < none @un H > 101s Considering librust-hex-dev:s390x 0 as a solution to satisfy:command-line:s390x 9998 101s Re-Instated librust-hex-dev:s390x 101s Broken satisfy:command-line:s390x Depends on librust-pem-1+default-dev:s390x < none @un H > 101s Broken satisfy:command-line:s390x Depends on librust-native-tls-dev:s390x < none | 0.2.11-2 @un uH > 101s Considering librust-native-tls-dev:s390x 1 as a solution to satisfy:command-line:s390x 9998 101s Re-Instated librust-autocfg-dev:s390x 101s Re-Instated librust-stable-deref-trait-dev:s390x 101s Re-Instated librust-owning-ref-dev:s390x 101s Re-Instated librust-scopeguard-dev:s390x 101s Re-Instated librust-unicode-ident-dev:s390x 101s Re-Instated librust-proc-macro2-dev:s390x 101s Re-Instated librust-quote-dev:s390x 101s Re-Instated librust-syn-dev:s390x 101s Re-Instated librust-serde-derive-dev:s390x 101s Re-Instated librust-serde-dev:s390x 101s Re-Instated librust-lock-api-dev:s390x 101s Re-Instated librust-spin-dev:s390x 101s Re-Instated librust-lazy-static-dev:s390x 101s Re-Instated librust-rustc-std-workspace-core-dev:s390x 101s Re-Instated librust-libc-dev:s390x 101s Re-Instated librust-sval-derive-dev:s390x 101s Re-Instated librust-sval-dev:s390x 101s Re-Instated librust-sval-ref-dev:s390x 101s Re-Instated librust-erased-serde-dev:s390x 101s Re-Instated librust-serde-fmt-dev:s390x 101s Re-Instated librust-derive-arbitrary-dev:s390x 101s Re-Instated librust-arbitrary-dev:s390x 101s Re-Instated librust-equivalent-dev:s390x 101s Re-Instated librust-critical-section-dev:s390x 101s Re-Instated librust-portable-atomic-dev:s390x 101s Re-Instated librust-cfg-if-dev:s390x 101s Re-Instated librust-getrandom-dev:s390x 101s Re-Instated librust-smallvec-dev:s390x 101s Re-Instated librust-parking-lot-core-dev:s390x 101s Re-Instated librust-once-cell-dev:s390x 101s Re-Instated librust-crunchy-dev:s390x 101s Re-Instated librust-tiny-keccak-dev:s390x 101s Re-Instated librust-const-random-macro-dev:s390x 101s Re-Instated librust-const-random-dev:s390x 101s Re-Instated librust-version-check-dev:s390x 101s Re-Instated librust-byteorder-dev:s390x 101s Re-Instated librust-zerocopy-derive-dev:s390x 101s Re-Instated librust-zerocopy-dev:s390x 101s Re-Instated librust-ahash-dev:s390x 101s Re-Instated librust-allocator-api2-dev:s390x 101s Re-Instated librust-compiler-builtins-dev:s390x 101s Re-Instated librust-either-dev:s390x 101s Re-Instated librust-crossbeam-utils-dev:s390x 101s Re-Instated librust-crossbeam-epoch-dev:s390x 101s Re-Instated librust-crossbeam-epoch+std-dev:s390x 101s Re-Instated librust-crossbeam-deque-dev:s390x 101s Re-Instated librust-rayon-core-dev:s390x 101s Re-Instated librust-rayon-dev:s390x 101s Re-Instated librust-hashbrown-dev:s390x 101s Re-Instated librust-indexmap-dev:s390x 101s Re-Instated librust-no-panic-dev:s390x 101s Re-Instated librust-itoa-dev:s390x 101s Re-Instated librust-memchr-dev:s390x 101s Re-Instated librust-ryu-dev:s390x 101s Re-Instated librust-serde-json-dev:s390x 101s Re-Instated librust-serde-test-dev:s390x 101s Re-Instated librust-value-bag-serde1-dev:s390x 101s Re-Instated librust-sval-buffer-dev:s390x 101s Re-Instated librust-sval-dynamic-dev:s390x 101s Re-Instated librust-sval-fmt-dev:s390x 101s Re-Instated librust-sval-serde-dev:s390x 101s Re-Instated librust-value-bag-sval2-dev:s390x 101s Re-Instated librust-value-bag-dev:s390x 101s Re-Instated librust-log-dev:s390x 101s Re-Instated librust-bytemuck-derive-dev:s390x 101s Re-Instated librust-bytemuck-dev:s390x 101s Re-Instated librust-bitflags-dev:s390x 101s Re-Instated librust-foreign-types-shared-0.1-dev:s390x 101s Re-Instated librust-foreign-types-0.3-dev:s390x 101s Re-Instated librust-openssl-macros-dev:s390x 101s Re-Instated librust-minimal-lexical-dev:s390x 101s Re-Instated librust-nom-dev:s390x 101s Re-Instated librust-nom+std-dev:s390x 101s Re-Instated librust-cexpr-dev:s390x 101s Re-Instated librust-glob-dev:s390x 101s Re-Instated librust-libloading-dev:s390x 101s Re-Instated libstdc++-14-dev:s390x 101s Re-Instated libgc1:s390x 101s Re-Instated libobjc4:s390x 101s Re-Instated libobjc-14-dev:s390x 101s Re-Instated libclang-common-19-dev:s390x 101s Re-Instated libclang-19-dev:s390x 101s Re-Instated libclang-dev:s390x 101s Re-Instated llvm-19-runtime:s390x 101s Re-Instated llvm-runtime:s390x 101s Re-Instated llvm-19-linker-tools:s390x 101s Re-Instated libpfm4:s390x 101s Re-Instated llvm-19:s390x 101s Re-Instated llvm:s390x 101s Re-Instated libclang-cpp19:s390x 101s Re-Instated clang-19:s390x 101s Re-Instated clang:s390x 101s Re-Instated librust-clang-sys-dev:s390x 101s Re-Instated librust-itertools-dev:s390x 101s Re-Instated librust-prettyplease-dev:s390x 101s Re-Instated librust-aho-corasick-dev:s390x 101s Re-Instated librust-regex-syntax-dev:s390x 101s Re-Instated librust-regex-automata-dev:s390x 101s Re-Instated librust-regex-dev:s390x 101s Re-Instated librust-rustc-hash-dev:s390x 101s Re-Instated librust-shlex-dev:s390x 101s Re-Instated librust-bindgen-dev:s390x 101s Re-Instated librust-jobserver-dev:s390x 101s Re-Instated librust-cc-dev:s390x 101s Re-Instated libpkgconf3:s390x 101s Re-Instated pkgconf-bin:s390x 101s Re-Instated pkgconf:s390x 101s Re-Instated librust-pkg-config-dev:s390x 101s Re-Instated librust-vcpkg-dev:s390x 101s Re-Instated libssl-dev:s390x 101s Re-Instated librust-openssl-sys-dev:s390x 101s Re-Instated librust-openssl-dev:s390x 101s Re-Instated librust-openssl-probe-dev:s390x 101s Re-Instated librust-winapi-i686-pc-windows-gnu-dev:s390x 101s Re-Instated librust-winapi-x86-64-pc-windows-gnu-dev:s390x 101s Re-Instated librust-winapi-dev:s390x 101s Re-Instated librust-schannel-dev:s390x 101s Re-Instated librust-fastrand-dev:s390x 101s Re-Instated librust-compiler-builtins+core-dev:s390x 101s Re-Instated librust-compiler-builtins+rustc-dep-of-std-dev:s390x 101s Re-Instated librust-errno-dev:s390x 101s Re-Instated librust-linux-raw-sys-dev:s390x 101s Re-Instated librust-rustix-dev:s390x 101s Re-Instated librust-tempfile-dev:s390x 101s Re-Instated librust-native-tls-dev:s390x 101s Done 101s Some packages could not be installed. This may mean that you have 101s requested an impossible situation or if you are using the unstable 101s distribution that some required packages have not yet been created 101s or been moved out of Incoming. 101s The following information may help to resolve the situation: 101s 101s The following packages have unmet dependencies: 101s satisfy:command-line : Depends: librust-base64-0.21+default-dev but it is not installable 101s Depends: librust-pem-1+default-dev but it is not installable 101s E: Unable to correct problems, you have held broken packages. 101s autopkgtest: DBG: testbed command exited with code 100 101s autopkgtest: DBG: apt-get satisfy failed; status-fd: 101s 101s autopkgtest: WARNING: Test dependencies are unsatisfiable with using apt pinning. Retrying with using all packages from plucky-proposed 101s autopkgtest: DBG: testbed command ['rm', '/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s 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-base64-0.21+default-dev, librust-hex-0.4+default-dev, librust-pem-1+default-dev, librust-native-tls-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 101s Reading package lists... 102s Building dependency tree... 102s Reading state information... 102s Starting pkgProblemResolver with broken count: 1 102s Starting 2 pkgProblemResolver with broken count: 1 102s Investigating (0) satisfy:command-line:s390x < none -> 1 @un puN Ib > 102s Broken satisfy:command-line:s390x Depends on dh-cargo:s390x < none | 31ubuntu4 @un uH > (>= 18) 102s Considering dh-cargo:s390x 0 as a solution to satisfy:command-line:s390x 9998 102s Re-Instated libstd-rust-1.84:s390x 102s Re-Instated libstd-rust-1.84-dev:s390x 102s Re-Instated libisl23:s390x 102s Re-Instated libmpc3:s390x 102s Re-Instated cpp-14-s390x-linux-gnu:s390x 102s Re-Instated cpp-14:s390x 102s Re-Instated cpp-s390x-linux-gnu:s390x 102s Re-Instated cpp:s390x 102s Re-Instated libcc1-0:s390x 102s Re-Instated libgomp1:s390x 102s Re-Instated libitm1:s390x 102s Re-Instated libasan8:s390x 102s Re-Instated libubsan1:s390x 102s Re-Instated libgcc-14-dev:s390x 102s Re-Instated gcc-14-s390x-linux-gnu:s390x 102s Re-Instated gcc-14:s390x 102s Re-Instated gcc-s390x-linux-gnu:s390x 102s Re-Instated gcc:s390x 102s Re-Instated rustc-1.84:s390x 102s Re-Instated rustc:s390x 102s Re-Instated libgit2-1.9:s390x 102s Re-Instated cargo-1.84:s390x 102s Re-Instated cargo:s390x 102s Re-Instated autotools-dev:s390x 102s Re-Instated m4:s390x 102s Re-Instated autoconf:s390x 102s Re-Instated automake:s390x 102s Re-Instated autopoint:s390x 102s Re-Instated libdebhelper-perl:s390x 102s Re-Instated libtool:s390x 102s Re-Instated dh-autoreconf:s390x 102s Re-Instated libarchive-zip-perl:s390x 102s Re-Instated libfile-stripnondeterminism-perl:s390x 102s Re-Instated dh-strip-nondeterminism:s390x 102s Re-Instated debugedit:s390x 102s Re-Instated dwz:s390x 102s Re-Instated gettext:s390x 102s Re-Instated intltool-debian:s390x 102s Re-Instated po-debconf:s390x 102s Re-Instated debhelper:s390x 102s Re-Instated dh-cargo-tools:s390x 102s Re-Instated dh-cargo:s390x 102s Broken satisfy:command-line:s390x Depends on librust-base64-0.21+default-dev:s390x < none @un H > 102s Broken satisfy:command-line:s390x Depends on librust-hex-0.4+default-dev:s390x < none @un H > 102s Considering librust-hex-dev:s390x 0 as a solution to satisfy:command-line:s390x 9998 102s Re-Instated librust-hex-dev:s390x 102s Broken satisfy:command-line:s390x Depends on librust-pem-1+default-dev:s390x < none @un H > 102s Broken satisfy:command-line:s390x Depends on librust-native-tls-dev:s390x < none | 0.2.13-1 @un uH > 102s Considering librust-native-tls-dev:s390x 1 as a solution to satisfy:command-line:s390x 9998 102s Re-Instated librust-rustc-std-workspace-core-dev:s390x 102s Re-Instated librust-libc-dev:s390x 102s Re-Instated librust-unicode-ident-dev:s390x 102s Re-Instated librust-proc-macro2-dev:s390x 102s Re-Instated librust-quote-dev:s390x 102s Re-Instated librust-syn-dev:s390x 102s Re-Instated librust-serde-derive-dev:s390x 102s Re-Instated librust-serde-dev:s390x 102s Re-Instated librust-sval-derive-dev:s390x 102s Re-Instated librust-sval-dev:s390x 102s Re-Instated librust-sval-ref-dev:s390x 102s Re-Instated librust-erased-serde-dev:s390x 102s Re-Instated librust-serde-fmt-dev:s390x 102s Re-Instated librust-derive-arbitrary-dev:s390x 102s Re-Instated librust-arbitrary-dev:s390x 102s Re-Instated librust-equivalent-dev:s390x 102s Re-Instated librust-critical-section-dev:s390x 102s Re-Instated librust-portable-atomic-dev:s390x 102s Re-Instated librust-cfg-if-dev:s390x 102s Re-Instated librust-getrandom-dev:s390x 102s Re-Instated librust-smallvec-dev:s390x 102s Re-Instated librust-parking-lot-core-dev:s390x 102s Re-Instated librust-once-cell-dev:s390x 102s Re-Instated librust-crunchy-dev:s390x 102s Re-Instated librust-tiny-keccak-dev:s390x 102s Re-Instated librust-const-random-macro-dev:s390x 102s Re-Instated librust-const-random-dev:s390x 102s Re-Instated librust-version-check-dev:s390x 102s Re-Instated librust-byteorder-dev:s390x 102s Re-Instated librust-zerocopy-derive-dev:s390x 102s Re-Instated librust-zerocopy-dev:s390x 102s Re-Instated librust-ahash-dev:s390x 102s Re-Instated librust-allocator-api2-dev:s390x 102s Re-Instated librust-compiler-builtins-dev:s390x 102s Re-Instated librust-either-dev:s390x 102s Re-Instated librust-crossbeam-utils-dev:s390x 102s Re-Instated librust-crossbeam-epoch-dev:s390x 102s Re-Instated librust-crossbeam-epoch+std-dev:s390x 102s Re-Instated librust-crossbeam-deque-dev:s390x 102s Re-Instated librust-rayon-core-dev:s390x 102s Re-Instated librust-rayon-dev:s390x 102s Re-Instated librust-hashbrown-dev:s390x 102s Re-Instated librust-indexmap-dev:s390x 102s Re-Instated librust-no-panic-dev:s390x 102s Re-Instated librust-itoa-dev:s390x 102s Re-Instated librust-memchr-dev:s390x 102s Re-Instated librust-ryu-dev:s390x 102s Re-Instated librust-serde-json-dev:s390x 102s Re-Instated librust-serde-test-dev:s390x 102s Re-Instated librust-value-bag-serde1-dev:s390x 102s Re-Instated librust-sval-buffer-dev:s390x 102s Re-Instated librust-sval-dynamic-dev:s390x 102s Re-Instated librust-sval-fmt-dev:s390x 102s Re-Instated librust-sval-serde-dev:s390x 102s Re-Instated librust-value-bag-sval2-dev:s390x 102s Re-Instated librust-value-bag-dev:s390x 102s Re-Instated librust-log-dev:s390x 102s Re-Instated librust-bytemuck-derive-dev:s390x 102s Re-Instated librust-bytemuck-dev:s390x 102s Re-Instated librust-bitflags-dev:s390x 102s Re-Instated librust-foreign-types-shared-0.1-dev:s390x 102s Re-Instated librust-foreign-types-0.3-dev:s390x 102s Re-Instated librust-openssl-macros-dev:s390x 102s Re-Instated librust-anstyle-dev:s390x 102s Re-Instated librust-unicode-width-0.1-dev:s390x 102s Re-Instated librust-annotate-snippets-dev:s390x 102s Re-Instated librust-minimal-lexical-dev:s390x 102s Re-Instated librust-nom-dev:s390x 102s Re-Instated librust-nom+std-dev:s390x 102s Re-Instated librust-cexpr-dev:s390x 102s Re-Instated librust-glob-dev:s390x 102s Re-Instated librust-libloading-dev:s390x 102s Re-Instated libstdc++-14-dev:s390x 102s Re-Instated libgc1:s390x 102s Re-Instated libobjc4:s390x 102s Re-Instated libobjc-14-dev:s390x 102s Re-Instated libclang1-19:s390x 102s Re-Instated libclang-common-19-dev:s390x 102s Re-Instated libclang-19-dev:s390x 102s Re-Instated libclang-dev:s390x 102s Re-Instated llvm-19-runtime:s390x 102s Re-Instated llvm-runtime:s390x 102s Re-Instated llvm-19-linker-tools:s390x 102s Re-Instated libpfm4:s390x 102s Re-Instated llvm-19:s390x 102s Re-Instated llvm:s390x 102s Re-Instated libllvm19:s390x 102s Re-Instated libclang-cpp19:s390x 102s Re-Instated clang-19:s390x 102s Re-Instated clang:s390x 102s Re-Instated librust-clang-sys-dev:s390x 102s Re-Instated librust-zeroize-derive-dev:s390x 102s Re-Instated librust-zeroize-dev:s390x 102s Re-Instated librust-arrayvec-dev:s390x 102s Re-Instated librust-utf8parse-dev:s390x 102s Re-Instated librust-anstyle-parse-dev:s390x 102s Re-Instated librust-anstyle-query-dev:s390x 102s Re-Instated librust-colorchoice-dev:s390x 102s Re-Instated librust-anstream-dev:s390x 102s Re-Instated librust-cpp-demangle-dev:s390x 102s Re-Instated librust-fallible-iterator-dev:s390x 102s Re-Instated librust-stable-deref-trait-dev:s390x 102s Re-Instated librust-gimli-dev:s390x 102s Re-Instated librust-memmap2-dev:s390x 102s Re-Instated librust-crc32fast-dev:s390x 102s Re-Instated libpkgconf3:s390x 102s Re-Instated pkgconf-bin:s390x 102s Re-Instated pkgconf:s390x 102s Re-Instated librust-pkg-config-dev:s390x 102s Re-Instated zlib1g-dev:s390x 102s Re-Instated librust-libz-sys-dev:s390x 102s Re-Instated librust-adler-dev:s390x 102s Re-Instated librust-miniz-oxide-dev:s390x 102s Re-Instated librust-flate2-dev:s390x 102s Re-Instated librust-blobby-dev:s390x 102s Re-Instated librust-typenum-dev:s390x 102s Re-Instated librust-generic-array-dev:s390x 102s Re-Instated librust-block-buffer-dev:s390x 102s Re-Instated librust-const-oid-dev:s390x 102s Re-Instated librust-rand-core-dev:s390x 102s Re-Instated librust-rand-core+getrandom-dev:s390x 102s Re-Instated librust-crypto-common-dev:s390x 102s Re-Instated librust-subtle-dev:s390x 102s Re-Instated librust-digest-dev:s390x 102s Re-Instated librust-ppv-lite86-dev:s390x 102s Re-Instated librust-rand-chacha-dev:s390x 102s Re-Instated librust-rand-core+serde-dev:s390x 102s Re-Instated librust-rand-core+std-dev:s390x 102s Re-Instated librust-rand-dev:s390x 102s Re-Instated librust-static-assertions-dev:s390x 102s Re-Instated librust-twox-hash-dev:s390x 102s Re-Instated librust-ruzstd-dev:s390x 102s Re-Instated librust-object-dev:s390x 102s Re-Instated librust-rustc-demangle-dev:s390x 102s Re-Instated librust-typed-arena-dev:s390x 102s Re-Instated librust-addr2line-dev:s390x 102s Re-Instated librust-backtrace-dev:s390x 102s Re-Instated librust-clap-lex-dev:s390x 102s Re-Instated librust-strsim-dev:s390x 102s Re-Instated librust-compiler-builtins+core-dev:s390x 102s Re-Instated librust-compiler-builtins+rustc-dep-of-std-dev:s390x 102s Re-Instated librust-errno-dev:s390x 102s Re-Instated librust-linux-raw-sys-dev:s390x 102s Re-Instated librust-rustix-dev:s390x 102s Re-Instated librust-terminal-size-dev:s390x 102s Re-Instated librust-unicase-dev:s390x 102s Re-Instated librust-unicode-width-dev:s390x 102s Re-Instated librust-clap-builder-dev:s390x 102s Re-Instated librust-unicode-segmentation-dev:s390x 102s Re-Instated librust-heck-dev:s390x 102s Re-Instated librust-clap-derive-dev:s390x 102s Re-Instated librust-clap-dev:s390x 102s Re-Instated librust-winapi-i686-pc-windows-gnu-dev:s390x 102s Re-Instated librust-winapi-x86-64-pc-windows-gnu-dev:s390x 102s Re-Instated librust-winapi-dev:s390x 102s Re-Instated librust-is-executable-dev:s390x 102s Re-Instated librust-shlex-dev:s390x 102s Re-Instated librust-clap-complete-dev:s390x 102s Re-Instated librust-itertools-dev:s390x 102s Re-Instated librust-prettyplease-dev:s390x 102s Re-Instated librust-aho-corasick-dev:s390x 102s Re-Instated librust-regex-syntax-dev:s390x 102s Re-Instated librust-regex-automata-dev:s390x 102s Re-Instated librust-regex-dev:s390x 102s Re-Instated librust-rustc-hash-dev:s390x 102s Re-Instated librust-bindgen-dev:s390x 102s Re-Instated librust-jobserver-dev:s390x 102s Re-Instated librust-cc-dev:s390x 102s Re-Instated librust-vcpkg-dev:s390x 102s Re-Instated libssl-dev:s390x 102s Re-Instated librust-openssl-sys-dev:s390x 102s Re-Instated librust-openssl-dev:s390x 102s Re-Instated librust-openssl-probe-dev:s390x 102s Re-Instated librust-autocfg-dev:s390x 102s Re-Instated librust-owning-ref-dev:s390x 102s Re-Instated librust-scopeguard-dev:s390x 102s Re-Instated librust-lock-api-dev:s390x 102s Re-Instated librust-spin-dev:s390x 102s Re-Instated librust-lazy-static-dev:s390x 102s Re-Instated librust-schannel-dev:s390x 102s Re-Instated librust-fastrand-dev:s390x 102s Re-Instated librust-tempfile-dev:s390x 102s Re-Instated librust-native-tls-dev:s390x 102s Done 102s Some packages could not be installed. This may mean that you have 102s requested an impossible situation or if you are using the unstable 102s distribution that some required packages have not yet been created 102s or been moved out of Incoming. 102s The following information may help to resolve the situation: 102s 102s The following packages have unmet dependencies: 102s satisfy:command-line : Depends: librust-base64-0.21+default-dev but it is not installable 102s Depends: librust-pem-1+default-dev but it is not installable 102s E: Unable to correct problems, you have held broken packages. 102s autopkgtest: DBG: testbed command exited with code 100 102s autopkgtest: DBG: apt-get satisfy failed; status-fd: 102s 102s autopkgtest: DBG: BadPackageError Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 102s autopkgtest [09:22:06]: test librust-native-tls-dev:alpn: preparing testbed 102s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'], deps_new=['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 102s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 102s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 102s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-base64-0.21+default-dev, librust-hex-0.4+default-dev, librust-pem-1+default-dev, librust-native-tls-dev 102s autopkgtest: DBG: can use apt-get on testbed: True 102s 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-base64-0.21+default-dev, librust-hex-0.4+default-dev, librust-pem-1+default-dev, librust-native-tls-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 102s rust-native-tls:@ SKIP installation fails and skip-not-installable set 102s Reading package lists... 102s Building dependency tree... 102s Reading state information... 102s Starting pkgProblemResolver with broken count: 1 102s Starting 2 pkgProblemResolver with broken count: 1 102s Investigating (0) satisfy:command-line:s390x < none -> 1 @un puN Ib > 102s Broken satisfy:command-line:s390x Depends on dh-cargo:s390x < none | 31ubuntu4 @un uH > (>= 18) 102s Considering dh-cargo:s390x 0 as a solution to satisfy:command-line:s390x 9998 102s Re-Instated libstd-rust-1.84:s390x 102s Re-Instated libstd-rust-1.84-dev:s390x 102s Re-Instated libisl23:s390x 102s Re-Instated libmpc3:s390x 102s Re-Instated cpp-14-s390x-linux-gnu:s390x 102s Re-Instated cpp-14:s390x 102s Re-Instated cpp-s390x-linux-gnu:s390x 102s Re-Instated cpp:s390x 102s Re-Instated libcc1-0:s390x 102s Re-Instated libgomp1:s390x 102s Re-Instated libitm1:s390x 102s Re-Instated libasan8:s390x 102s Re-Instated libubsan1:s390x 102s Re-Instated libgcc-14-dev:s390x 102s Re-Instated gcc-14-s390x-linux-gnu:s390x 102s Re-Instated gcc-14:s390x 102s Re-Instated gcc-s390x-linux-gnu:s390x 102s Re-Instated gcc:s390x 102s Re-Instated rustc-1.84:s390x 102s Re-Instated rustc:s390x 102s Re-Instated libgit2-1.9:s390x 102s Re-Instated cargo-1.84:s390x 102s Re-Instated cargo:s390x 102s Re-Instated autotools-dev:s390x 102s Re-Instated m4:s390x 102s Re-Instated autoconf:s390x 102s Re-Instated automake:s390x 102s Re-Instated autopoint:s390x 102s Re-Instated libdebhelper-perl:s390x 102s Re-Instated libtool:s390x 102s Re-Instated dh-autoreconf:s390x 102s Re-Instated libarchive-zip-perl:s390x 102s Re-Instated libfile-stripnondeterminism-perl:s390x 102s Re-Instated dh-strip-nondeterminism:s390x 102s Re-Instated debugedit:s390x 102s Re-Instated dwz:s390x 102s Re-Instated gettext:s390x 102s Re-Instated intltool-debian:s390x 102s Re-Instated po-debconf:s390x 102s Re-Instated debhelper:s390x 102s Re-Instated dh-cargo-tools:s390x 102s Re-Instated dh-cargo:s390x 102s Broken satisfy:command-line:s390x Depends on librust-base64-0.21+default-dev:s390x < none @un H > 102s Broken satisfy:command-line:s390x Depends on librust-hex-0.4+default-dev:s390x < none @un H > 102s Considering librust-hex-dev:s390x 0 as a solution to satisfy:command-line:s390x 9998 102s Re-Instated librust-hex-dev:s390x 102s Broken satisfy:command-line:s390x Depends on librust-pem-1+default-dev:s390x < none @un H > 102s Broken satisfy:command-line:s390x Depends on librust-native-tls-dev:s390x < none | 0.2.13-1 @un uH > 102s Considering librust-native-tls-dev:s390x 1 as a solution to satisfy:command-line:s390x 9998 102s Re-Instated librust-rustc-std-workspace-core-dev:s390x 102s Re-Instated librust-libc-dev:s390x 102s Re-Instated librust-unicode-ident-dev:s390x 102s Re-Instated librust-proc-macro2-dev:s390x 102s Re-Instated librust-quote-dev:s390x 102s Re-Instated librust-syn-dev:s390x 102s Re-Instated librust-serde-derive-dev:s390x 102s Re-Instated librust-serde-dev:s390x 102s Re-Instated librust-sval-derive-dev:s390x 102s Re-Instated librust-sval-dev:s390x 102s Re-Instated librust-sval-ref-dev:s390x 102s Re-Instated librust-erased-serde-dev:s390x 102s Re-Instated librust-serde-fmt-dev:s390x 102s Re-Instated librust-derive-arbitrary-dev:s390x 102s Re-Instated librust-arbitrary-dev:s390x 102s Re-Instated librust-equivalent-dev:s390x 102s Re-Instated librust-critical-section-dev:s390x 102s Re-Instated librust-portable-atomic-dev:s390x 102s Re-Instated librust-cfg-if-dev:s390x 102s Re-Instated librust-getrandom-dev:s390x 102s Re-Instated librust-smallvec-dev:s390x 102s Re-Instated librust-parking-lot-core-dev:s390x 102s Re-Instated librust-once-cell-dev:s390x 102s Re-Instated librust-crunchy-dev:s390x 102s Re-Instated librust-tiny-keccak-dev:s390x 102s Re-Instated librust-const-random-macro-dev:s390x 102s Re-Instated librust-const-random-dev:s390x 102s Re-Instated librust-version-check-dev:s390x 102s Re-Instated librust-byteorder-dev:s390x 102s Re-Instated librust-zerocopy-derive-dev:s390x 102s Re-Instated librust-zerocopy-dev:s390x 102s Re-Instated librust-ahash-dev:s390x 102s Re-Instated librust-allocator-api2-dev:s390x 102s Re-Instated librust-compiler-builtins-dev:s390x 102s Re-Instated librust-either-dev:s390x 102s Re-Instated librust-crossbeam-utils-dev:s390x 102s Re-Instated librust-crossbeam-epoch-dev:s390x 102s Re-Instated librust-crossbeam-epoch+std-dev:s390x 102s Re-Instated librust-crossbeam-deque-dev:s390x 102s Re-Instated librust-rayon-core-dev:s390x 102s Re-Instated librust-rayon-dev:s390x 102s Re-Instated librust-hashbrown-dev:s390x 102s Re-Instated librust-indexmap-dev:s390x 102s Re-Instated librust-no-panic-dev:s390x 102s Re-Instated librust-itoa-dev:s390x 102s Re-Instated librust-memchr-dev:s390x 102s Re-Instated librust-ryu-dev:s390x 102s Re-Instated librust-serde-json-dev:s390x 102s Re-Instated librust-serde-test-dev:s390x 102s Re-Instated librust-value-bag-serde1-dev:s390x 102s Re-Instated librust-sval-buffer-dev:s390x 102s Re-Instated librust-sval-dynamic-dev:s390x 102s Re-Instated librust-sval-fmt-dev:s390x 102s Re-Instated librust-sval-serde-dev:s390x 102s Re-Instated librust-value-bag-sval2-dev:s390x 102s Re-Instated librust-value-bag-dev:s390x 102s Re-Instated librust-log-dev:s390x 102s Re-Instated librust-bytemuck-derive-dev:s390x 102s Re-Instated librust-bytemuck-dev:s390x 102s Re-Instated librust-bitflags-dev:s390x 102s Re-Instated librust-foreign-types-shared-0.1-dev:s390x 102s Re-Instated librust-foreign-types-0.3-dev:s390x 102s Re-Instated librust-openssl-macros-dev:s390x 102s Re-Instated librust-anstyle-dev:s390x 102s Re-Instated librust-unicode-width-0.1-dev:s390x 102s Re-Instated librust-annotate-snippets-dev:s390x 102s Re-Instated librust-minimal-lexical-dev:s390x 102s Re-Instated librust-nom-dev:s390x 102s Re-Instated librust-nom+std-dev:s390x 102s Re-Instated librust-cexpr-dev:s390x 102s Re-Instated librust-glob-dev:s390x 102s Re-Instated librust-libloading-dev:s390x 102s Re-Instated libstdc++-14-dev:s390x 102s Re-Instated libgc1:s390x 102s Re-Instated libobjc4:s390x 102s Re-Instated libobjc-14-dev:s390x 102s Re-Instated libclang1-19:s390x 102s Re-Instated libclang-common-19-dev:s390x 102s Re-Instated libclang-19-dev:s390x 102s Re-Instated libclang-dev:s390x 102s Re-Instated llvm-19-runtime:s390x 102s Re-Instated llvm-runtime:s390x 102s Re-Instated llvm-19-linker-tools:s390x 102s Re-Instated libpfm4:s390x 102s Re-Instated llvm-19:s390x 102s Re-Instated llvm:s390x 102s Re-Instated libllvm19:s390x 102s Re-Instated libclang-cpp19:s390x 102s Re-Instated clang-19:s390x 102s Re-Instated clang:s390x 102s Re-Instated librust-clang-sys-dev:s390x 102s Re-Instated librust-zeroize-derive-dev:s390x 102s Re-Instated librust-zeroize-dev:s390x 102s Re-Instated librust-arrayvec-dev:s390x 102s Re-Instated librust-utf8parse-dev:s390x 102s Re-Instated librust-anstyle-parse-dev:s390x 102s Re-Instated librust-anstyle-query-dev:s390x 102s Re-Instated librust-colorchoice-dev:s390x 102s Re-Instated librust-anstream-dev:s390x 102s Re-Instated librust-cpp-demangle-dev:s390x 102s Re-Instated librust-fallible-iterator-dev:s390x 102s Re-Instated librust-stable-deref-trait-dev:s390x 102s Re-Instated librust-gimli-dev:s390x 102s Re-Instated librust-memmap2-dev:s390x 102s Re-Instated librust-crc32fast-dev:s390x 102s Re-Instated libpkgconf3:s390x 102s Re-Instated pkgconf-bin:s390x 102s Re-Instated pkgconf:s390x 102s Re-Instated librust-pkg-config-dev:s390x 102s Re-Instated zlib1g-dev:s390x 102s Re-Instated librust-libz-sys-dev:s390x 102s Re-Instated librust-adler-dev:s390x 102s Re-Instated librust-miniz-oxide-dev:s390x 102s Re-Instated librust-flate2-dev:s390x 102s Re-Instated librust-blobby-dev:s390x 102s Re-Instated librust-typenum-dev:s390x 102s Re-Instated librust-generic-array-dev:s390x 102s Re-Instated librust-block-buffer-dev:s390x 102s Re-Instated librust-const-oid-dev:s390x 102s Re-Instated librust-rand-core-dev:s390x 102s Re-Instated librust-rand-core+getrandom-dev:s390x 102s Re-Instated librust-crypto-common-dev:s390x 102s Re-Instated librust-subtle-dev:s390x 102s Re-Instated librust-digest-dev:s390x 102s Re-Instated librust-ppv-lite86-dev:s390x 102s Re-Instated librust-rand-chacha-dev:s390x 102s Re-Instated librust-rand-core+serde-dev:s390x 102s Re-Instated librust-rand-core+std-dev:s390x 102s Re-Instated librust-rand-dev:s390x 102s Re-Instated librust-static-assertions-dev:s390x 102s Re-Instated librust-twox-hash-dev:s390x 102s Re-Instated librust-ruzstd-dev:s390x 102s Re-Instated librust-object-dev:s390x 102s Re-Instated librust-rustc-demangle-dev:s390x 102s Re-Instated librust-typed-arena-dev:s390x 102s Re-Instated librust-addr2line-dev:s390x 102s Re-Instated librust-backtrace-dev:s390x 102s Re-Instated librust-clap-lex-dev:s390x 102s Re-Instated librust-strsim-dev:s390x 102s Re-Instated librust-compiler-builtins+core-dev:s390x 102s Re-Instated librust-compiler-builtins+rustc-dep-of-std-dev:s390x 102s Re-Instated librust-errno-dev:s390x 102s Re-Instated librust-linux-raw-sys-dev:s390x 102s Re-Instated librust-rustix-dev:s390x 102s Re-Instated librust-terminal-size-dev:s390x 102s Re-Instated librust-unicase-dev:s390x 102s Re-Instated librust-unicode-width-dev:s390x 102s Re-Instated librust-clap-builder-dev:s390x 102s Re-Instated librust-unicode-segmentation-dev:s390x 102s Re-Instated librust-heck-dev:s390x 102s Re-Instated librust-clap-derive-dev:s390x 102s Re-Instated librust-clap-dev:s390x 102s Re-Instated librust-winapi-i686-pc-windows-gnu-dev:s390x 102s Re-Instated librust-winapi-x86-64-pc-windows-gnu-dev:s390x 102s Re-Instated librust-winapi-dev:s390x 102s Re-Instated librust-is-executable-dev:s390x 102s Re-Instated librust-shlex-dev:s390x 102s Re-Instated librust-clap-complete-dev:s390x 102s Re-Instated librust-itertools-dev:s390x 102s Re-Instated librust-prettyplease-dev:s390x 102s Re-Instated librust-aho-corasick-dev:s390x 102s Re-Instated librust-regex-syntax-dev:s390x 102s Re-Instated librust-regex-automata-dev:s390x 102s Re-Instated librust-regex-dev:s390x 102s Re-Instated librust-rustc-hash-dev:s390x 102s Re-Instated librust-bindgen-dev:s390x 102s Re-Instated librust-jobserver-dev:s390x 102s Re-Instated librust-cc-dev:s390x 102s Re-Instated librust-vcpkg-dev:s390x 102s Re-Instated libssl-dev:s390x 102s Re-Instated librust-openssl-sys-dev:s390x 102s Re-Instated librust-openssl-dev:s390x 102s Re-Instated librust-openssl-probe-dev:s390x 102s Re-Instated librust-autocfg-dev:s390x 102s Re-Instated librust-owning-ref-dev:s390x 102s Re-Instated librust-scopeguard-dev:s390x 102s Re-Instated librust-lock-api-dev:s390x 102s Re-Instated librust-spin-dev:s390x 102s Re-Instated librust-lazy-static-dev:s390x 102s Re-Instated librust-schannel-dev:s390x 102s Re-Instated librust-fastrand-dev:s390x 102s Re-Instated librust-tempfile-dev:s390x 102s Re-Instated librust-native-tls-dev:s390x 102s Done 102s Some packages could not be installed. This may mean that you have 102s requested an impossible situation or if you are using the unstable 102s distribution that some required packages have not yet been created 102s or been moved out of Incoming. 102s The following information may help to resolve the situation: 102s 102s The following packages have unmet dependencies: 102s satisfy:command-line : Depends: librust-base64-0.21+default-dev but it is not installable 102s Depends: librust-pem-1+default-dev but it is not installable 102s E: Unable to correct problems, you have held broken packages. 102s autopkgtest: DBG: testbed command exited with code 100 102s autopkgtest: DBG: apt-get satisfy failed; status-fd: 102s 102s autopkgtest: DBG: BadPackageError Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 102s autopkgtest [09:22:06]: test librust-native-tls-dev:default: preparing testbed 102s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'], deps_new=['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 102s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 102s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 102s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-base64-0.21+default-dev, librust-hex-0.4+default-dev, librust-pem-1+default-dev, librust-native-tls-dev 102s autopkgtest: DBG: can use apt-get on testbed: True 102s 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-base64-0.21+default-dev, librust-hex-0.4+default-dev, librust-pem-1+default-dev, librust-native-tls-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 102s librust-native-tls-dev:alpn SKIP installation fails and skip-not-installable set 103s Reading package lists... 103s Building dependency tree... 103s Reading state information... 103s Starting pkgProblemResolver with broken count: 1 103s Starting 2 pkgProblemResolver with broken count: 1 103s Investigating (0) satisfy:command-line:s390x < none -> 1 @un puN Ib > 103s Broken satisfy:command-line:s390x Depends on dh-cargo:s390x < none | 31ubuntu4 @un uH > (>= 18) 103s Considering dh-cargo:s390x 0 as a solution to satisfy:command-line:s390x 9998 103s Re-Instated libstd-rust-1.84:s390x 103s Re-Instated libstd-rust-1.84-dev:s390x 103s Re-Instated libisl23:s390x 103s Re-Instated libmpc3:s390x 103s Re-Instated cpp-14-s390x-linux-gnu:s390x 103s Re-Instated cpp-14:s390x 103s Re-Instated cpp-s390x-linux-gnu:s390x 103s Re-Instated cpp:s390x 103s Re-Instated libcc1-0:s390x 103s Re-Instated libgomp1:s390x 103s Re-Instated libitm1:s390x 103s Re-Instated libasan8:s390x 103s Re-Instated libubsan1:s390x 103s Re-Instated libgcc-14-dev:s390x 103s Re-Instated gcc-14-s390x-linux-gnu:s390x 103s Re-Instated gcc-14:s390x 103s Re-Instated gcc-s390x-linux-gnu:s390x 103s Re-Instated gcc:s390x 103s Re-Instated rustc-1.84:s390x 103s Re-Instated rustc:s390x 103s Re-Instated libgit2-1.9:s390x 103s Re-Instated cargo-1.84:s390x 103s Re-Instated cargo:s390x 103s Re-Instated autotools-dev:s390x 103s Re-Instated m4:s390x 103s Re-Instated autoconf:s390x 103s Re-Instated automake:s390x 103s Re-Instated autopoint:s390x 103s Re-Instated libdebhelper-perl:s390x 103s Re-Instated libtool:s390x 103s Re-Instated dh-autoreconf:s390x 103s Re-Instated libarchive-zip-perl:s390x 103s Re-Instated libfile-stripnondeterminism-perl:s390x 103s Re-Instated dh-strip-nondeterminism:s390x 103s Re-Instated debugedit:s390x 103s Re-Instated dwz:s390x 103s Re-Instated gettext:s390x 103s Re-Instated intltool-debian:s390x 103s Re-Instated po-debconf:s390x 103s Re-Instated debhelper:s390x 103s Re-Instated dh-cargo-tools:s390x 103s Re-Instated dh-cargo:s390x 103s Broken satisfy:command-line:s390x Depends on librust-base64-0.21+default-dev:s390x < none @un H > 103s Broken satisfy:command-line:s390x Depends on librust-hex-0.4+default-dev:s390x < none @un H > 103s Considering librust-hex-dev:s390x 0 as a solution to satisfy:command-line:s390x 9998 103s Re-Instated librust-hex-dev:s390x 103s Broken satisfy:command-line:s390x Depends on librust-pem-1+default-dev:s390x < none @un H > 103s Broken satisfy:command-line:s390x Depends on librust-native-tls-dev:s390x < none | 0.2.13-1 @un uH > 103s Considering librust-native-tls-dev:s390x 1 as a solution to satisfy:command-line:s390x 9998 103s Re-Instated librust-rustc-std-workspace-core-dev:s390x 103s Re-Instated librust-libc-dev:s390x 103s Re-Instated librust-unicode-ident-dev:s390x 103s Re-Instated librust-proc-macro2-dev:s390x 103s Re-Instated librust-quote-dev:s390x 103s Re-Instated librust-syn-dev:s390x 103s Re-Instated librust-serde-derive-dev:s390x 103s Re-Instated librust-serde-dev:s390x 103s Re-Instated librust-sval-derive-dev:s390x 103s Re-Instated librust-sval-dev:s390x 103s Re-Instated librust-sval-ref-dev:s390x 103s Re-Instated librust-erased-serde-dev:s390x 103s Re-Instated librust-serde-fmt-dev:s390x 103s Re-Instated librust-derive-arbitrary-dev:s390x 103s Re-Instated librust-arbitrary-dev:s390x 103s Re-Instated librust-equivalent-dev:s390x 103s Re-Instated librust-critical-section-dev:s390x 103s Re-Instated librust-portable-atomic-dev:s390x 103s Re-Instated librust-cfg-if-dev:s390x 103s Re-Instated librust-getrandom-dev:s390x 103s Re-Instated librust-smallvec-dev:s390x 103s Re-Instated librust-parking-lot-core-dev:s390x 103s Re-Instated librust-once-cell-dev:s390x 103s Re-Instated librust-crunchy-dev:s390x 103s Re-Instated librust-tiny-keccak-dev:s390x 103s Re-Instated librust-const-random-macro-dev:s390x 103s Re-Instated librust-const-random-dev:s390x 103s Re-Instated librust-version-check-dev:s390x 103s Re-Instated librust-byteorder-dev:s390x 103s Re-Instated librust-zerocopy-derive-dev:s390x 103s Re-Instated librust-zerocopy-dev:s390x 103s Re-Instated librust-ahash-dev:s390x 103s Re-Instated librust-allocator-api2-dev:s390x 103s Re-Instated librust-compiler-builtins-dev:s390x 103s Re-Instated librust-either-dev:s390x 103s Re-Instated librust-crossbeam-utils-dev:s390x 103s Re-Instated librust-crossbeam-epoch-dev:s390x 103s Re-Instated librust-crossbeam-epoch+std-dev:s390x 103s Re-Instated librust-crossbeam-deque-dev:s390x 103s Re-Instated librust-rayon-core-dev:s390x 103s Re-Instated librust-rayon-dev:s390x 103s Re-Instated librust-hashbrown-dev:s390x 103s Re-Instated librust-indexmap-dev:s390x 103s Re-Instated librust-no-panic-dev:s390x 103s Re-Instated librust-itoa-dev:s390x 103s Re-Instated librust-memchr-dev:s390x 103s Re-Instated librust-ryu-dev:s390x 103s Re-Instated librust-serde-json-dev:s390x 103s Re-Instated librust-serde-test-dev:s390x 103s Re-Instated librust-value-bag-serde1-dev:s390x 103s Re-Instated librust-sval-buffer-dev:s390x 103s Re-Instated librust-sval-dynamic-dev:s390x 103s Re-Instated librust-sval-fmt-dev:s390x 103s Re-Instated librust-sval-serde-dev:s390x 103s Re-Instated librust-value-bag-sval2-dev:s390x 103s Re-Instated librust-value-bag-dev:s390x 103s Re-Instated librust-log-dev:s390x 103s Re-Instated librust-bytemuck-derive-dev:s390x 103s Re-Instated librust-bytemuck-dev:s390x 103s Re-Instated librust-bitflags-dev:s390x 103s Re-Instated librust-foreign-types-shared-0.1-dev:s390x 103s Re-Instated librust-foreign-types-0.3-dev:s390x 103s Re-Instated librust-openssl-macros-dev:s390x 103s Re-Instated librust-anstyle-dev:s390x 103s Re-Instated librust-unicode-width-0.1-dev:s390x 103s Re-Instated librust-annotate-snippets-dev:s390x 103s Re-Instated librust-minimal-lexical-dev:s390x 103s Re-Instated librust-nom-dev:s390x 103s Re-Instated librust-nom+std-dev:s390x 103s Re-Instated librust-cexpr-dev:s390x 103s Re-Instated librust-glob-dev:s390x 103s Re-Instated librust-libloading-dev:s390x 103s Re-Instated libstdc++-14-dev:s390x 103s Re-Instated libgc1:s390x 103s Re-Instated libobjc4:s390x 103s Re-Instated libobjc-14-dev:s390x 103s Re-Instated libclang1-19:s390x 103s Re-Instated libclang-common-19-dev:s390x 103s Re-Instated libclang-19-dev:s390x 103s Re-Instated libclang-dev:s390x 103s Re-Instated llvm-19-runtime:s390x 103s Re-Instated llvm-runtime:s390x 103s Re-Instated llvm-19-linker-tools:s390x 103s Re-Instated libpfm4:s390x 103s Re-Instated llvm-19:s390x 103s Re-Instated llvm:s390x 103s Re-Instated libllvm19:s390x 103s Re-Instated libclang-cpp19:s390x 103s Re-Instated clang-19:s390x 103s Re-Instated clang:s390x 103s Re-Instated librust-clang-sys-dev:s390x 103s Re-Instated librust-zeroize-derive-dev:s390x 103s Re-Instated librust-zeroize-dev:s390x 103s Re-Instated librust-arrayvec-dev:s390x 103s Re-Instated librust-utf8parse-dev:s390x 103s Re-Instated librust-anstyle-parse-dev:s390x 103s Re-Instated librust-anstyle-query-dev:s390x 103s Re-Instated librust-colorchoice-dev:s390x 103s Re-Instated librust-anstream-dev:s390x 103s Re-Instated librust-cpp-demangle-dev:s390x 103s Re-Instated librust-fallible-iterator-dev:s390x 103s Re-Instated librust-stable-deref-trait-dev:s390x 103s Re-Instated librust-gimli-dev:s390x 103s Re-Instated librust-memmap2-dev:s390x 103s Re-Instated librust-crc32fast-dev:s390x 103s Re-Instated libpkgconf3:s390x 103s Re-Instated pkgconf-bin:s390x 103s Re-Instated pkgconf:s390x 103s Re-Instated librust-pkg-config-dev:s390x 103s Re-Instated zlib1g-dev:s390x 103s Re-Instated librust-libz-sys-dev:s390x 103s Re-Instated librust-adler-dev:s390x 103s Re-Instated librust-miniz-oxide-dev:s390x 103s Re-Instated librust-flate2-dev:s390x 103s Re-Instated librust-blobby-dev:s390x 103s Re-Instated librust-typenum-dev:s390x 103s Re-Instated librust-generic-array-dev:s390x 103s Re-Instated librust-block-buffer-dev:s390x 103s Re-Instated librust-const-oid-dev:s390x 103s Re-Instated librust-rand-core-dev:s390x 103s Re-Instated librust-rand-core+getrandom-dev:s390x 103s Re-Instated librust-crypto-common-dev:s390x 103s Re-Instated librust-subtle-dev:s390x 103s Re-Instated librust-digest-dev:s390x 103s Re-Instated librust-ppv-lite86-dev:s390x 103s Re-Instated librust-rand-chacha-dev:s390x 103s Re-Instated librust-rand-core+serde-dev:s390x 103s Re-Instated librust-rand-core+std-dev:s390x 103s Re-Instated librust-rand-dev:s390x 103s Re-Instated librust-static-assertions-dev:s390x 103s Re-Instated librust-twox-hash-dev:s390x 103s Re-Instated librust-ruzstd-dev:s390x 103s Re-Instated librust-object-dev:s390x 103s Re-Instated librust-rustc-demangle-dev:s390x 103s Re-Instated librust-typed-arena-dev:s390x 103s Re-Instated librust-addr2line-dev:s390x 103s Re-Instated librust-backtrace-dev:s390x 103s Re-Instated librust-clap-lex-dev:s390x 103s Re-Instated librust-strsim-dev:s390x 103s Re-Instated librust-compiler-builtins+core-dev:s390x 103s Re-Instated librust-compiler-builtins+rustc-dep-of-std-dev:s390x 103s Re-Instated librust-errno-dev:s390x 103s Re-Instated librust-linux-raw-sys-dev:s390x 103s Re-Instated librust-rustix-dev:s390x 103s Re-Instated librust-terminal-size-dev:s390x 103s Re-Instated librust-unicase-dev:s390x 103s Re-Instated librust-unicode-width-dev:s390x 103s Re-Instated librust-clap-builder-dev:s390x 103s Re-Instated librust-unicode-segmentation-dev:s390x 103s Re-Instated librust-heck-dev:s390x 103s Re-Instated librust-clap-derive-dev:s390x 103s Re-Instated librust-clap-dev:s390x 103s Re-Instated librust-winapi-i686-pc-windows-gnu-dev:s390x 103s Re-Instated librust-winapi-x86-64-pc-windows-gnu-dev:s390x 103s Re-Instated librust-winapi-dev:s390x 103s Re-Instated librust-is-executable-dev:s390x 103s Re-Instated librust-shlex-dev:s390x 103s Re-Instated librust-clap-complete-dev:s390x 103s Re-Instated librust-itertools-dev:s390x 103s Re-Instated librust-prettyplease-dev:s390x 103s Re-Instated librust-aho-corasick-dev:s390x 103s Re-Instated librust-regex-syntax-dev:s390x 103s Re-Instated librust-regex-automata-dev:s390x 103s Re-Instated librust-regex-dev:s390x 103s Re-Instated librust-rustc-hash-dev:s390x 103s Re-Instated librust-bindgen-dev:s390x 103s Re-Instated librust-jobserver-dev:s390x 103s Re-Instated librust-cc-dev:s390x 103s Re-Instated librust-vcpkg-dev:s390x 103s Re-Instated libssl-dev:s390x 103s Re-Instated librust-openssl-sys-dev:s390x 103s Re-Instated librust-openssl-dev:s390x 103s Re-Instated librust-openssl-probe-dev:s390x 103s Re-Instated librust-autocfg-dev:s390x 103s Re-Instated librust-owning-ref-dev:s390x 103s Re-Instated librust-scopeguard-dev:s390x 103s Re-Instated librust-lock-api-dev:s390x 103s Re-Instated librust-spin-dev:s390x 103s Re-Instated librust-lazy-static-dev:s390x 103s Re-Instated librust-schannel-dev:s390x 103s Re-Instated librust-fastrand-dev:s390x 103s Re-Instated librust-tempfile-dev:s390x 103s Re-Instated librust-native-tls-dev:s390x 103s Done 103s Some packages could not be installed. This may mean that you have 103s requested an impossible situation or if you are using the unstable 103s distribution that some required packages have not yet been created 103s or been moved out of Incoming. 103s The following information may help to resolve the situation: 103s 103s The following packages have unmet dependencies: 103s satisfy:command-line : Depends: librust-base64-0.21+default-dev but it is not installable 103s Depends: librust-pem-1+default-dev but it is not installable 103s E: Unable to correct problems, you have held broken packages. 103s autopkgtest: DBG: testbed command exited with code 100 103s autopkgtest: DBG: apt-get satisfy failed; status-fd: 103s 103s autopkgtest: DBG: BadPackageError Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 103s autopkgtest [09:22:07]: test librust-native-tls-dev:: preparing testbed 103s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'], deps_new=['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 103s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 103s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-base64-0.21+default-dev', 'librust-hex-0.4+default-dev', 'librust-pem-1+default-dev', 'librust-native-tls-dev'] 103s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-base64-0.21+default-dev, librust-hex-0.4+default-dev, librust-pem-1+default-dev, librust-native-tls-dev 103s autopkgtest: DBG: can use apt-get on testbed: True 103s 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-base64-0.21+default-dev, librust-hex-0.4+default-dev, librust-pem-1+default-dev, librust-native-tls-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 103s librust-native-tls-dev:default SKIP installation fails and skip-not-installable set 103s Reading package lists... 103s Building dependency tree... 103s Reading state information... 104s Starting pkgProblemResolver with broken count: 1 104s Starting 2 pkgProblemResolver with broken count: 1 104s Investigating (0) satisfy:command-line:s390x < none -> 1 @un puN Ib > 104s Broken satisfy:command-line:s390x Depends on dh-cargo:s390x < none | 31ubuntu4 @un uH > (>= 18) 104s Considering dh-cargo:s390x 0 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated libstd-rust-1.84:s390x 104s Re-Instated libstd-rust-1.84-dev:s390x 104s Re-Instated libisl23:s390x 104s Re-Instated libmpc3:s390x 104s Re-Instated cpp-14-s390x-linux-gnu:s390x 104s Re-Instated cpp-14:s390x 104s Re-Instated cpp-s390x-linux-gnu:s390x 104s Re-Instated cpp:s390x 104s Re-Instated libcc1-0:s390x 104s Re-Instated libgomp1:s390x 104s Re-Instated libitm1:s390x 104s Re-Instated libasan8:s390x 104s Re-Instated libubsan1:s390x 104s Re-Instated libgcc-14-dev:s390x 104s Re-Instated gcc-14-s390x-linux-gnu:s390x 104s Re-Instated gcc-14:s390x 104s Re-Instated gcc-s390x-linux-gnu:s390x 104s Re-Instated gcc:s390x 104s Re-Instated rustc-1.84:s390x 104s Re-Instated rustc:s390x 104s Re-Instated libgit2-1.9:s390x 104s Re-Instated cargo-1.84:s390x 104s Re-Instated cargo:s390x 104s Re-Instated autotools-dev:s390x 104s Re-Instated m4:s390x 104s Re-Instated autoconf:s390x 104s Re-Instated automake:s390x 104s Re-Instated autopoint:s390x 104s Re-Instated libdebhelper-perl:s390x 104s Re-Instated libtool:s390x 104s Re-Instated dh-autoreconf:s390x 104s Re-Instated libarchive-zip-perl:s390x 104s Re-Instated libfile-stripnondeterminism-perl:s390x 104s Re-Instated dh-strip-nondeterminism:s390x 104s Re-Instated debugedit:s390x 104s Re-Instated dwz:s390x 104s Re-Instated gettext:s390x 104s Re-Instated intltool-debian:s390x 104s Re-Instated po-debconf:s390x 104s Re-Instated debhelper:s390x 104s Re-Instated dh-cargo-tools:s390x 104s Re-Instated dh-cargo:s390x 104s Broken satisfy:command-line:s390x Depends on librust-base64-0.21+default-dev:s390x < none @un H > 104s Broken satisfy:command-line:s390x Depends on librust-hex-0.4+default-dev:s390x < none @un H > 104s Considering librust-hex-dev:s390x 0 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated librust-hex-dev:s390x 104s Broken satisfy:command-line:s390x Depends on librust-pem-1+default-dev:s390x < none @un H > 104s Broken satisfy:command-line:s390x Depends on librust-native-tls-dev:s390x < none | 0.2.13-1 @un uH > 104s Considering librust-native-tls-dev:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated librust-rustc-std-workspace-core-dev:s390x 104s Re-Instated librust-libc-dev:s390x 104s Re-Instated librust-unicode-ident-dev:s390x 104s Re-Instated librust-proc-macro2-dev:s390x 104s Re-Instated librust-quote-dev:s390x 104s Re-Instated librust-syn-dev:s390x 104s Re-Instated librust-serde-derive-dev:s390x 104s Re-Instated librust-serde-dev:s390x 104s Re-Instated librust-sval-derive-dev:s390x 104s Re-Instated librust-sval-dev:s390x 104s Re-Instated librust-sval-ref-dev:s390x 104s Re-Instated librust-erased-serde-dev:s390x 104s Re-Instated librust-serde-fmt-dev:s390x 104s Re-Instated librust-derive-arbitrary-dev:s390x 104s Re-Instated librust-arbitrary-dev:s390x 104s Re-Instated librust-equivalent-dev:s390x 104s Re-Instated librust-critical-section-dev:s390x 104s Re-Instated librust-portable-atomic-dev:s390x 104s Re-Instated librust-cfg-if-dev:s390x 104s Re-Instated librust-getrandom-dev:s390x 104s Re-Instated librust-smallvec-dev:s390x 104s Re-Instated librust-parking-lot-core-dev:s390x 104s Re-Instated librust-once-cell-dev:s390x 104s Re-Instated librust-crunchy-dev:s390x 104s Re-Instated librust-tiny-keccak-dev:s390x 104s Re-Instated librust-const-random-macro-dev:s390x 104s Re-Instated librust-const-random-dev:s390x 104s Re-Instated librust-version-check-dev:s390x 104s Re-Instated librust-byteorder-dev:s390x 104s Re-Instated librust-zerocopy-derive-dev:s390x 104s Re-Instated librust-zerocopy-dev:s390x 104s Re-Instated librust-ahash-dev:s390x 104s Re-Instated librust-allocator-api2-dev:s390x 104s Re-Instated librust-compiler-builtins-dev:s390x 104s Re-Instated librust-either-dev:s390x 104s Re-Instated librust-crossbeam-utils-dev:s390x 104s Re-Instated librust-crossbeam-epoch-dev:s390x 104s Re-Instated librust-crossbeam-epoch+std-dev:s390x 104s Re-Instated librust-crossbeam-deque-dev:s390x 104s Re-Instated librust-rayon-core-dev:s390x 104s Re-Instated librust-rayon-dev:s390x 104s Re-Instated librust-hashbrown-dev:s390x 104s Re-Instated librust-indexmap-dev:s390x 104s Re-Instated librust-no-panic-dev:s390x 104s Re-Instated librust-itoa-dev:s390x 104s Re-Instated librust-memchr-dev:s390x 104s Re-Instated librust-ryu-dev:s390x 104s Re-Instated librust-serde-json-dev:s390x 104s Re-Instated librust-serde-test-dev:s390x 104s Re-Instated librust-value-bag-serde1-dev:s390x 104s Re-Instated librust-sval-buffer-dev:s390x 104s Re-Instated librust-sval-dynamic-dev:s390x 104s Re-Instated librust-sval-fmt-dev:s390x 104s Re-Instated librust-sval-serde-dev:s390x 104s Re-Instated librust-value-bag-sval2-dev:s390x 104s Re-Instated librust-value-bag-dev:s390x 104s Re-Instated librust-log-dev:s390x 104s Re-Instated librust-bytemuck-derive-dev:s390x 104s Re-Instated librust-bytemuck-dev:s390x 104s Re-Instated librust-bitflags-dev:s390x 104s Re-Instated librust-foreign-types-shared-0.1-dev:s390x 104s Re-Instated librust-foreign-types-0.3-dev:s390x 104s Re-Instated librust-openssl-macros-dev:s390x 104s Re-Instated librust-anstyle-dev:s390x 104s Re-Instated librust-unicode-width-0.1-dev:s390x 104s Re-Instated librust-annotate-snippets-dev:s390x 104s Re-Instated librust-minimal-lexical-dev:s390x 104s Re-Instated librust-nom-dev:s390x 104s Re-Instated librust-nom+std-dev:s390x 104s Re-Instated librust-cexpr-dev:s390x 104s Re-Instated librust-glob-dev:s390x 104s Re-Instated librust-libloading-dev:s390x 104s Re-Instated libstdc++-14-dev:s390x 104s Re-Instated libgc1:s390x 104s Re-Instated libobjc4:s390x 104s Re-Instated libobjc-14-dev:s390x 104s Re-Instated libclang1-19:s390x 104s Re-Instated libclang-common-19-dev:s390x 104s Re-Instated libclang-19-dev:s390x 104s Re-Instated libclang-dev:s390x 104s Re-Instated llvm-19-runtime:s390x 104s Re-Instated llvm-runtime:s390x 104s Re-Instated llvm-19-linker-tools:s390x 104s Re-Instated libpfm4:s390x 104s Re-Instated llvm-19:s390x 104s Re-Instated llvm:s390x 104s Re-Instated libllvm19:s390x 104s Re-Instated libclang-cpp19:s390x 104s Re-Instated clang-19:s390x 104s Re-Instated clang:s390x 104s Re-Instated librust-clang-sys-dev:s390x 104s Re-Instated librust-zeroize-derive-dev:s390x 104s Re-Instated librust-zeroize-dev:s390x 104s Re-Instated librust-arrayvec-dev:s390x 104s Re-Instated librust-utf8parse-dev:s390x 104s Re-Instated librust-anstyle-parse-dev:s390x 104s Re-Instated librust-anstyle-query-dev:s390x 104s Re-Instated librust-colorchoice-dev:s390x 104s Re-Instated librust-anstream-dev:s390x 104s Re-Instated librust-cpp-demangle-dev:s390x 104s Re-Instated librust-fallible-iterator-dev:s390x 104s Re-Instated librust-stable-deref-trait-dev:s390x 104s Re-Instated librust-gimli-dev:s390x 104s Re-Instated librust-memmap2-dev:s390x 104s Re-Instated librust-crc32fast-dev:s390x 104s Re-Instated libpkgconf3:s390x 104s Re-Instated pkgconf-bin:s390x 104s Re-Instated pkgconf:s390x 104s Re-Instated librust-pkg-config-dev:s390x 104s Re-Instated zlib1g-dev:s390x 104s Re-Instated librust-libz-sys-dev:s390x 104s Re-Instated librust-adler-dev:s390x 104s Re-Instated librust-miniz-oxide-dev:s390x 104s Re-Instated librust-flate2-dev:s390x 104s Re-Instated librust-blobby-dev:s390x 104s Re-Instated librust-typenum-dev:s390x 104s Re-Instated librust-generic-array-dev:s390x 104s Re-Instated librust-block-buffer-dev:s390x 104s Re-Instated librust-const-oid-dev:s390x 104s Re-Instated librust-rand-core-dev:s390x 104s Re-Instated librust-rand-core+getrandom-dev:s390x 104s Re-Instated librust-crypto-common-dev:s390x 104s Re-Instated librust-subtle-dev:s390x 104s Re-Instated librust-digest-dev:s390x 104s Re-Instated librust-ppv-lite86-dev:s390x 104s Re-Instated librust-rand-chacha-dev:s390x 104s Re-Instated librust-rand-core+serde-dev:s390x 104s Re-Instated librust-rand-core+std-dev:s390x 104s Re-Instated librust-rand-dev:s390x 104s Re-Instated librust-static-assertions-dev:s390x 104s Re-Instated librust-twox-hash-dev:s390x 104s Re-Instated librust-ruzstd-dev:s390x 104s Re-Instated librust-object-dev:s390x 104s Re-Instated librust-rustc-demangle-dev:s390x 104s Re-Instated librust-typed-arena-dev:s390x 104s Re-Instated librust-addr2line-dev:s390x 104s Re-Instated librust-backtrace-dev:s390x 104s Re-Instated librust-clap-lex-dev:s390x 104s Re-Instated librust-strsim-dev:s390x 104s Re-Instated librust-compiler-builtins+core-dev:s390x 104s Re-Instated librust-compiler-builtins+rustc-dep-of-std-dev:s390x 104s Re-Instated librust-errno-dev:s390x 104s Re-Instated librust-linux-raw-sys-dev:s390x 104s Re-Instated librust-rustix-dev:s390x 104s Re-Instated librust-terminal-size-dev:s390x 104s Re-Instated librust-unicase-dev:s390x 104s Re-Instated librust-unicode-width-dev:s390x 104s Re-Instated librust-clap-builder-dev:s390x 104s Re-Instated librust-unicode-segmentation-dev:s390x 104s Re-Instated librust-heck-dev:s390x 104s Re-Instated librust-clap-derive-dev:s390x 104s Re-Instated librust-clap-dev:s390x 104s Re-Instated librust-winapi-i686-pc-windows-gnu-dev:s390x 104s Re-Instated librust-winapi-x86-64-pc-windows-gnu-dev:s390x 104s Re-Instated librust-winapi-dev:s390x 104s Re-Instated librust-is-executable-dev:s390x 104s Re-Instated librust-shlex-dev:s390x 104s Re-Instated librust-clap-complete-dev:s390x 104s Re-Instated librust-itertools-dev:s390x 104s Re-Instated librust-prettyplease-dev:s390x 104s Re-Instated librust-aho-corasick-dev:s390x 104s Re-Instated librust-regex-syntax-dev:s390x 104s Re-Instated librust-regex-automata-dev:s390x 104s Re-Instated librust-regex-dev:s390x 104s Re-Instated librust-rustc-hash-dev:s390x 104s Re-Instated librust-bindgen-dev:s390x 104s Re-Instated librust-jobserver-dev:s390x 104s Re-Instated librust-cc-dev:s390x 104s Re-Instated librust-vcpkg-dev:s390x 104s Re-Instated libssl-dev:s390x 104s Re-Instated librust-openssl-sys-dev:s390x 104s Re-Instated librust-openssl-dev:s390x 104s Re-Instated librust-openssl-probe-dev:s390x 104s Re-Instated librust-autocfg-dev:s390x 104s Re-Instated librust-owning-ref-dev:s390x 104s Re-Instated librust-scopeguard-dev:s390x 104s Re-Instated librust-lock-api-dev:s390x 104s Re-Instated librust-spin-dev:s390x 104s Re-Instated librust-lazy-static-dev:s390x 104s Re-Instated librust-schannel-dev:s390x 104s Re-Instated librust-fastrand-dev:s390x 104s Re-Instated librust-tempfile-dev:s390x 104s Re-Instated librust-native-tls-dev:s390x 104s Done 104s Some packages could not be installed. This may mean that you have 104s requested an impossible situation or if you are using the unstable 104s distribution that some required packages have not yet been created 104s or been moved out of Incoming. 104s The following information may help to resolve the situation: 104s 104s The following packages have unmet dependencies: 104s satisfy:command-line : Depends: librust-base64-0.21+default-dev but it is not installable 104s Depends: librust-pem-1+default-dev but it is not installable 104s E: Unable to correct problems, you have held broken packages. 104s autopkgtest: DBG: testbed command exited with code 100 104s autopkgtest: DBG: apt-get satisfy failed; status-fd: 104s 104s autopkgtest: DBG: BadPackageError Test dependencies are unsatisfiable. A common reason is that your testbed is out of date with respect to the archive, and you need to use a current testbed or run apt-get update or use -U. 104s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 104s autopkgtest [09:22:08]: @@@@@@@@@@@@@@@@@@@@ summary 104s rust-native-tls:@ SKIP installation fails and skip-not-installable set 104s librust-native-tls-dev:alpn SKIP installation fails and skip-not-installable set 104s librust-native-tls-dev:default SKIP installation fails and skip-not-installable set 104s librust-native-tls-dev: SKIP installation fails and skip-not-installable set 104s autopkgtest: DBG: testbed stop 104s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.UeZYpm 104s autopkgtest: DBG: sending command to testbed: close 104s librust-native-tls-dev: SKIP installation fails and skip-not-installable set 108s autopkgtest: DBG: got reply from testbed: ok 108s autopkgtest: DBG: sending command to testbed: quit 108s nova [W] Using flock in prodstack6-s390x 108s Creating nova instance adt-plucky-s390x-rust-native-tls-20250207-092024-juju-7f2275-prod-proposed-migration-environment-15-63452940-a03c-49d5-8ab9-164054225b50 from image adt/ubuntu-plucky-s390x-server-20250207.img (UUID e3aa55f2-b1ba-4605-b146-c2987438f3dd)... 108s nova [W] Timed out waiting for ea5b01b6-4a62-4678-a2aa-72237dd5b3da to get deleted.