0s autopkgtest: DBG: testbed init 0s autopkgtest [23:25:06]: starting date and time: 2025-02-19 23:25:06+0000 0s autopkgtest [23:25:06]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [23:25:06]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.uweljzb_/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:clinfo,src:nabu,src:silx --apt-upgrade silx --debug --timeout-short=300 --timeout-copy=20000 --timeout-test=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=clinfo/3.0.25.02.14-1 nabu/2024.2.1-1 silx/2.2.0+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-big-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-23.secgroup --name adt-plucky-s390x-silx-20250219-232506-juju-7f2275-prod-proposed-migration-environment-15-098c3223-0191-4902-ada7-1f63d792ad32 --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 61s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.bkO2k8 61s autopkgtest: DBG: sending command to testbed: print-execute-command 61s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.x3s3giss/runcmd 61s autopkgtest: DBG: sending command to testbed: capabilities 61s autopkgtest: DBG: got reply from testbed: ok revert revert-full-system isolation-machine suggested-normal-user=ubuntu reboot root-on-testbed 61s autopkgtest: DBG: testbed capabilities: ['revert', 'revert-full-system', 'isolation-machine', 'suggested-normal-user=ubuntu', 'reboot', 'root-on-testbed', 'has_internet'] 61s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bkO2k8'], kind short, sout raw, serr pipe, env [] 61s autopkgtest: DBG: testbed command exited with code 0 61s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.bkO2k8/wrapper.sh 61s autopkgtest: DBG: got reply from testbed: ok 61s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bkO2k8/wrapper.sh'], kind short, sout raw, serr pipe, env [] 62s autopkgtest: DBG: testbed command exited with code 0 62s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 62s autopkgtest: DBG: testbed command exited with code 0 62s autopkgtest [23:26:08]: testbed dpkg architecture: s390x 62s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 62s autopkgtest: DBG: testbed command exited with code 0 62s autopkgtest [23:26:08]: testbed apt version: 2.9.30 62s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 62s autopkgtest: DBG: testbed command exited with code 0 62s autopkgtest: DBG: testbed has eatmydata 62s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 62s autopkgtest: DBG: testbed command exited with code 0 62s autopkgtest [23:26:08]: @@@@@@@@@@@@@@@@@@@@ test bed setup 62s 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 [] 62s autopkgtest: DBG: testbed command exited with code 0 62s autopkgtest [23:26:08]: testbed release detected to be: None 62s 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 [] 63s autopkgtest: DBG: testbed command exited with code 0 63s 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 [] 63s autopkgtest: DBG: testbed command exited with code 0 63s autopkgtest: DBG: adding APT source: Types: deb deb-src 63s URIs: http://ftpmaster.internal/ubuntu/ 63s Suites: plucky-proposed 63s Components: main restricted universe multiverse 63s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 63s 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 [] 63s autopkgtest: DBG: testbed command exited with code 0 63s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 63s Package: * 63s Pin: release plucky-proposed 63s Pin-Priority: 500 63s 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 [] 63s autopkgtest: DBG: testbed command exited with code 0 63s autopkgtest [23:26:09]: updating testbed package index (apt update) 63s 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'] 63s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 64s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 64s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 64s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 64s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [739 kB] 64s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [81.0 kB] 64s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 64s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [16.3 kB] 64s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [106 kB] 64s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 64s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [665 kB] 64s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5472 B] 64s Fetched 1727 kB in 1s (1904 kB/s) 65s Reading package lists... 65s autopkgtest: DBG: testbed command exited with code 0 65s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 65s Package: * 65s Pin: release plucky-proposed 65s Pin-Priority: 100 65s 65s Package: src:clinfo:any src:nabu:any src:silx:any 65s Pin: release plucky-proposed 65s Pin-Priority: 995 65s 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:clinfo:any src:nabu:any src:silx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 65s autopkgtest: DBG: testbed command exited with code 0 65s 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.bkO2k8/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 65s autopkgtest: DBG: testbed command exited with code 0 65s 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'] 65s + lsb_release --codename --short 65s + RELEASE=plucky 65s + cat 65s + [ plucky != trusty ] 65s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 65s Reading package lists... 65s Building dependency tree... 65s Reading state information... 66s Calculating upgrade... 66s The following packages were automatically installed and are no longer required: 66s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 66s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 66s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 66s linux-tools-6.11.0-8-generic 66s Use 'sudo apt autoremove' to remove them. 66s The following packages will be upgraded: 66s apparmor iproute2 libapparmor1 libgpgme11t64 liblsof0 libp11-kit0 66s liburcu8t64 lsof lto-disabled-list python-apt-common python3-apt 66s sysvinit-utils 66s 12 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 66s Need to get 3078 kB of archives. 66s After this operation, 213 kB of additional disk space will be used. 66s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 66s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 66s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libapparmor1 s390x 4.1.0~beta5-0ubuntu2 [54.1 kB] 66s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 66s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python-apt-common all 2.9.9 [21.2 kB] 66s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3-apt s390x 2.9.9 [185 kB] 66s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x apparmor s390x 4.1.0~beta5-0ubuntu2 [758 kB] 66s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x liburcu8t64 s390x 0.15.1-1 [66.0 kB] 66s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 66s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 66s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 66s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x lto-disabled-list all 55 [12.3 kB] 67s Preconfiguring packages ... 67s Fetched 3078 kB in 1s (4532 kB/s) 67s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 67s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 67s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 67s Setting up sysvinit-utils (3.14-1ubuntu1) ... 67s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 67s Preparing to unpack .../00-iproute2_6.13.0-1ubuntu1_s390x.deb ... 67s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 67s Preparing to unpack .../01-libapparmor1_4.1.0~beta5-0ubuntu2_s390x.deb ... 67s Unpacking libapparmor1:s390x (4.1.0~beta5-0ubuntu2) over (4.1.0~beta1-0ubuntu5) ... 67s Preparing to unpack .../02-libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 67s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 67s Preparing to unpack .../03-python-apt-common_2.9.9_all.deb ... 67s Unpacking python-apt-common (2.9.9) over (2.9.8) ... 67s Preparing to unpack .../04-python3-apt_2.9.9_s390x.deb ... 67s /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. 67s for fn in glob1(directory, "%s.*" % fname): 67s Unpacking python3-apt (2.9.9) over (2.9.8) ... 67s Preparing to unpack .../05-apparmor_4.1.0~beta5-0ubuntu2_s390x.deb ... 68s Unpacking apparmor (4.1.0~beta5-0ubuntu2) over (4.1.0~beta1-0ubuntu5) ... 68s dpkg: warning: unable to delete old directory '/lib/apparmor': Directory not empty 68s Preparing to unpack .../06-liburcu8t64_0.15.1-1_s390x.deb ... 68s Unpacking liburcu8t64:s390x (0.15.1-1) over (0.15.0-1) ... 68s Preparing to unpack .../07-lsof_4.99.4+dfsg-1_s390x.deb ... 68s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 68s Preparing to unpack .../08-liblsof0_4.99.4+dfsg-1_s390x.deb ... 68s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 68s Preparing to unpack .../09-libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 68s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 68s Preparing to unpack .../10-lto-disabled-list_55_all.deb ... 68s Unpacking lto-disabled-list (55) over (54) ... 68s Setting up liburcu8t64:s390x (0.15.1-1) ... 68s Setting up lto-disabled-list (55) ... 68s Setting up libapparmor1:s390x (4.1.0~beta5-0ubuntu2) ... 68s Setting up liblsof0 (4.99.4+dfsg-1) ... 68s Setting up iproute2 (6.13.0-1ubuntu1) ... 68s Setting up apparmor (4.1.0~beta5-0ubuntu2) ... 68s Installing new version of config file /etc/apparmor.d/abstractions/dconf ... 68s Installing new version of config file /etc/apparmor.d/abstractions/mesa ... 68s Installing new version of config file /etc/apparmor.d/abstractions/nameservice ... 68s Installing new version of config file /etc/apparmor.d/abstractions/php ... 68s Installing new version of config file /etc/apparmor.d/abstractions/python ... 68s Installing new version of config file /etc/apparmor.d/slirp4netns ... 68s Installing new version of config file /etc/apparmor.d/toybox ... 68s Installing new version of config file /etc/apparmor.d/transmission ... 68s Installing new version of config file /etc/apparmor.d/tunables/global ... 69s Reloading AppArmor profiles 69s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 69s Setting up lsof (4.99.4+dfsg-1) ... 69s Setting up python-apt-common (2.9.9) ... 69s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 69s Setting up python3-apt (2.9.9) ... 70s Processing triggers for systemd (257.2-3ubuntu1) ... 70s Processing triggers for man-db (2.13.0-1) ... 71s Processing triggers for libc-bin (2.40-4ubuntu1) ... 71s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 71s + /usr/lib/apt/apt-helper analyze-pattern ?true 71s + uname -r 71s + sed s/\./\\./g 71s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 71s + apt list ?obsolete 71s + tail -n+2 71s + cut -d/ -f1 71s + grep -v ^linux-.*6\.12\.0-15-generic.* 71s + true 71s + obsolete_pkgs= 71s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 71s Reading package lists... 71s Building dependency tree... 71s Reading state information... 71s The following packages will be REMOVED: 71s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 71s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 71s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 71s linux-tools-6.11.0-8-generic* 71s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 71s After this operation, 167 MB disk space will be freed. 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 ... 81079 files and directories currently installed.) 71s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 71s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 71s Removing libpython3.12t64:s390x (3.12.9-1) ... 72s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 72s Removing libnsl2:s390x (1.3.0-3build3) ... 72s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 72s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 72s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 73s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 73s Processing triggers for libc-bin (2.40-4ubuntu1) ... 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 ... 55979 files and directories currently installed.) 74s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 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 [23:26:20]: 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'] 74s Reading package lists... 74s Building dependency tree... 74s Reading state information... 74s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 74s Starting 2 pkgProblemResolver with broken count: 0 74s 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'] 75s Reading package lists... 75s Building dependency tree... 75s Reading state information... 75s Starting pkgProblemResolver with broken count: 0 75s Starting 2 pkgProblemResolver with broken count: 0 75s Done 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 ['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.bkO2k8/${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 [23:26:22]: rebooting testbed after setup commands that affected boot 76s autopkgtest: DBG: sending command to testbed: reboot 92s autopkgtest: DBG: got reply from testbed: ok 92s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 92s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bkO2k8'], kind short, sout raw, serr pipe, env [] 92s autopkgtest: DBG: testbed command exited with code 0 92s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.bkO2k8/autopkgtest-reboot 92s autopkgtest: DBG: got reply from testbed: ok 92s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 92s autopkgtest: DBG: testbed command exited with code 0 92s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bkO2k8'], kind short, sout raw, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.bkO2k8/autopkgtest-reboot-prepare 93s autopkgtest: DBG: got reply from testbed: ok 93s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 93s autopkgtest: DBG: testbed command exited with code 0 93s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest [23:26:40]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 94s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.bkO2k8/testbed-packages"], kind short, sout raw, serr pipe, env [] 94s autopkgtest: DBG: testbed command exited with code 0 94s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bkO2k8/testbed-packages /tmp/autopkgtest-work.uweljzb_/out/testbed-packages 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.bkO2k8'], 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.bkO2k8/autopkgtest-reboot 95s autopkgtest: DBG: got reply from testbed: ok 95s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot'], 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.bkO2k8/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], 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.bkO2k8/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.bkO2k8'], 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.bkO2k8/autopkgtest-reboot-prepare 95s autopkgtest: DBG: got reply from testbed: ok 95s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bkO2k8/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.bkO2k8/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: Binaries: initialising 96s autopkgtest [23:26:42]: @@@@@@@@@@@@@@@@@@@@ apt-source silx 96s autopkgtest: DBG: blame += silx 96s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 96s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'silx'], kind short, sout pipe, serr pipe, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-silx$'], kind short, sout pipe, serr raw, env [] 96s autopkgtest: DBG: testbed command exited with code 0 96s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-silx-doc$'], kind short, sout pipe, serr raw, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-silx-doc=2.2.0+dfsg-1'], kind short, sout pipe, serr raw, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^silx$'], kind short, sout pipe, serr raw, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'silx=2.2.0+dfsg-1'], kind short, sout pipe, serr raw, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: install_deps: deps_new=[] 97s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s 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.bkO2k8/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source silx=2.2.0+dfsg-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x silx_*.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=clinfo/3.0.25.02.14-1 nabu/2024.2.1-1 silx/2.2.0+dfsg-1'] 98s + cd / 98s + mktemp -d /tmp/autopkgtest.bkO2k8/build.XXX 98s + builddir=/tmp/autopkgtest.bkO2k8/build.Njb 98s + cd /tmp/autopkgtest.bkO2k8/build.Njb 98s + apt-get source -d -q --only-source silx=2.2.0+dfsg-1 100s + OUT=Reading package lists... 100s NOTICE: 'silx' packaging is maintained in the 'Git' version control system at: 100s https://salsa.debian.org/science-team/silx.git 100s Please use: 100s git clone https://salsa.debian.org/science-team/silx.git 100s to retrieve the latest (possibly unreleased) updates to the package. 100s Need to get 17.7 MB of source archives. 100s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe silx 2.2.0+dfsg-1 (dsc) [3169 B] 100s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe silx 2.2.0+dfsg-1 (tar) [17.5 MB] 100s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe silx 2.2.0+dfsg-1 (diff) [158 kB] 100s Fetched 17.7 MB in 2s (7764 kB/s) 100s Download complete and in download only mode 100s + [ -n ] 100s + echo Reading package lists... 100s NOTICE: 'silx' packaging is maintained in the 'Git' version control system at: 100s https://salsa.debian.org/science-team/silx.git 100s Please use: 100s git clone https://salsa.debian.org/science-team/silx.git 100s to retrieve the latest (possibly unreleased) updates to the package. 100s Need to get 17.7 MB of source archives. 100s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe silx 2.2.0+dfsg-1 (dsc) [3169 B] 100s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe silx 2.2.0+dfsg-1 (tar) [17.5 MB] 100s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe silx 2.2.0+dfsg-1 (diff) [158 kB] 100s Fetched 17.7 MB in 2s (7764 kB/s) 100s Download complete and in download only mode 100s + grep ^Get: 100s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/universe silx 2.2.0+dfsg-1 (dsc) [3169 B] 100s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/universe silx 2.2.0+dfsg-1 (tar) [17.5 MB] 100s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/universe silx 2.2.0+dfsg-1 (diff) [158 kB] 100s + dpkg-source -x silx_2.2.0+dfsg-1.dsc src 100s gpgv: Signature made Thu Feb 13 23:26:07 2025 UTC 100s gpgv: using RSA key 8F6DE104377F3B11E741748731F3144544A1741A 100s gpgv: issuer "tchet@debian.org" 100s gpgv: Can't check signature: No public key 100s dpkg-source: warning: cannot verify inline signature for ./silx_2.2.0+dfsg-1.dsc: no acceptable signature found 101s + chmod -R a+rX . 101s + cd src/. 101s + pwd 101s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest [23:26:47]: testing package silx version 2.2.0+dfsg-1 101s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bkO2k8/build.Njb/src/debian/ /tmp/autopkgtest-work.uweljzb_/out/pkg/debian/ 102s autopkgtest: DBG: got reply from testbed: ok 102s autopkgtest: DBG: processing dependency @ 102s autopkgtest: DBG: synthesised dependency silx 102s autopkgtest: DBG: synthesised dependency python3-silx 102s autopkgtest: DBG: synthesised dependency python-silx-doc 102s autopkgtest: DBG: processing dependency python3-all 102s autopkgtest: DBG: processing dependency python3-pytest 102s autopkgtest: DBG: processing dependency python3-pytest-mock 102s autopkgtest: DBG: processing dependency python3-pytest-xvfb 102s autopkgtest: DBG: processing dependency xauth 102s autopkgtest: DBG: processing dependency xvfb 102s autopkgtest: DBG: Test defined: name no-opencl path debian/tests/no-opencl command "None" restrictions ['allow-stderr'] features [] depends ['silx', 'python3-silx', 'python-silx-doc', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 102s autopkgtest: DBG: processing dependency @ 102s autopkgtest: DBG: synthesised dependency silx 102s autopkgtest: DBG: synthesised dependency python3-silx 102s autopkgtest: DBG: synthesised dependency python-silx-doc 102s autopkgtest: DBG: processing dependency clinfo 102s autopkgtest: DBG: processing dependency python3-all 102s autopkgtest: DBG: processing dependency python3-pytest 102s autopkgtest: DBG: processing dependency python3-pytest-mock 102s autopkgtest: DBG: processing dependency python3-pytest-xvfb 102s autopkgtest: DBG: processing dependency xauth 102s autopkgtest: DBG: processing dependency xvfb 102s autopkgtest: DBG: Test defined: name opencl path debian/tests/opencl command "None" restrictions ['allow-stderr'] features [] depends ['silx', 'python3-silx', 'python-silx-doc', 'clinfo', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 102s autopkgtest: DBG: processing dependency mesa-utils 102s autopkgtest: DBG: processing dependency silx 102s autopkgtest: DBG: marked alternatives ['silx'] as a synthesised dependency 102s autopkgtest: DBG: processing dependency xauth 102s autopkgtest: DBG: processing dependency xvfb 102s autopkgtest: DBG: Test defined: name command1 path None command "xvfb-run -s "-screen 0 1024x768x24 -ac +extension GLX +render -noreset" sh debian/tests/gui" restrictions ['allow-stderr'] features [] depends ['mesa-utils', 'silx', 'xauth', 'xvfb'] 102s autopkgtest [23:26:48]: build not needed 102s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bkO2k8/build.Njb/src/ /tmp/autopkgtest-work.uweljzb_/out/tests-tree/ 103s autopkgtest: DBG: got reply from testbed: ok 103s autopkgtest: DBG: processing dependency @ 103s autopkgtest: DBG: synthesised dependency silx 103s autopkgtest: DBG: synthesised dependency python3-silx 103s autopkgtest: DBG: synthesised dependency python-silx-doc 103s autopkgtest: DBG: processing dependency python3-all 103s autopkgtest: DBG: processing dependency python3-pytest 103s autopkgtest: DBG: processing dependency python3-pytest-mock 103s autopkgtest: DBG: processing dependency python3-pytest-xvfb 103s autopkgtest: DBG: processing dependency xauth 103s autopkgtest: DBG: processing dependency xvfb 103s autopkgtest: DBG: Test defined: name no-opencl path debian/tests/no-opencl command "None" restrictions ['allow-stderr'] features [] depends ['silx', 'python3-silx', 'python-silx-doc', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 103s autopkgtest: DBG: processing dependency @ 103s autopkgtest: DBG: synthesised dependency silx 103s autopkgtest: DBG: synthesised dependency python3-silx 103s autopkgtest: DBG: synthesised dependency python-silx-doc 103s autopkgtest: DBG: processing dependency clinfo 103s autopkgtest: DBG: processing dependency python3-all 103s autopkgtest: DBG: processing dependency python3-pytest 103s autopkgtest: DBG: processing dependency python3-pytest-mock 103s autopkgtest: DBG: processing dependency python3-pytest-xvfb 103s autopkgtest: DBG: processing dependency xauth 103s autopkgtest: DBG: processing dependency xvfb 103s autopkgtest: DBG: Test defined: name opencl path debian/tests/opencl command "None" restrictions ['allow-stderr'] features [] depends ['silx', 'python3-silx', 'python-silx-doc', 'clinfo', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 103s autopkgtest: DBG: processing dependency mesa-utils 103s autopkgtest: DBG: processing dependency silx 103s autopkgtest: DBG: marked alternatives ['silx'] as a synthesised dependency 103s autopkgtest: DBG: processing dependency xauth 103s autopkgtest: DBG: processing dependency xvfb 103s autopkgtest: DBG: Test defined: name command1 path None command "xvfb-run -s "-screen 0 1024x768x24 -ac +extension GLX +render -noreset" sh debian/tests/gui" restrictions ['allow-stderr'] features [] depends ['mesa-utils', 'silx', 'xauth', 'xvfb'] 103s autopkgtest [23:26:49]: test no-opencl: preparing testbed 103s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['silx', 'python3-silx', 'python-silx-doc', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 103s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 103s autopkgtest: DBG: install_deps: deps_new=['silx', 'python3-silx', 'python-silx-doc', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 103s autopkgtest: DBG: install-deps: satisfying silx, python3-silx, python-silx-doc, python3-all, python3-pytest, python3-pytest-mock, python3-pytest-xvfb, xauth, xvfb 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', 'silx, python3-silx, python-silx-doc, python3-all, python3-pytest, python3-pytest-mock, python3-pytest-xvfb, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 104s Reading package lists... 104s Building dependency tree... 104s 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 silx:s390x < none | 2.2.0+dfsg-1 @un uH > 104s Considering silx:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Reinst Failed early because of python3-silx:s390x 104s Considering silx:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Broken satisfy:command-line:s390x Depends on python3-silx:s390x < none @un H > 104s Broken satisfy:command-line:s390x Depends on python-silx-doc:s390x < none | 2.2.0+dfsg-1 @un uH > 104s Considering python-silx-doc:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated fonts-mathjax:s390x 104s Re-Instated libjs-mathjax:s390x 104s Re-Instated libjs-jquery:s390x 104s Re-Instated libjs-underscore:s390x 104s Re-Instated libjs-sphinxdoc:s390x 104s Re-Instated python-silx-doc:s390x 104s Broken satisfy:command-line:s390x Depends on python3-all:s390x < none | 3.13.1-1~exp2 @un uH > 104s Considering python3-all:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated libpython3.12-minimal:s390x 104s Re-Instated python3.12-minimal:s390x 104s Re-Instated libnsl2:s390x 104s Re-Instated libpython3.12-stdlib:s390x 104s Re-Instated python3.12:s390x 104s Re-Instated python3-all:s390x 104s Broken satisfy:command-line:s390x Depends on python3-pytest:s390x < none | 8.3.4-1 @un uH > 104s Considering python3-pytest:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated python3-iniconfig:s390x 104s Re-Instated python3-packaging:s390x 104s Re-Instated python3-pluggy:s390x 104s Re-Instated python3-pytest:s390x 104s Broken satisfy:command-line:s390x Depends on python3-pytest-mock:s390x < none | 3.14.0-2 @un uH > 104s Considering python3-pytest-mock:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated python3-pytest-mock:s390x 104s Broken satisfy:command-line:s390x Depends on python3-pytest-xvfb:s390x < none | 3.0.0-2 @un uH > 104s Considering python3-pytest-xvfb:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated x11-common:s390x 104s Re-Instated libice6:s390x 104s Re-Instated libsm6:s390x 104s Re-Instated libxt6t64:s390x 104s Re-Instated libxmu6:s390x 104s Re-Instated libxpm4:s390x 104s Re-Instated libxaw7:s390x 104s Re-Instated libxkbfile1:s390x 104s Re-Instated libxrender1:s390x 104s Re-Instated libxrandr2:s390x 104s Re-Instated x11-xkb-utils:s390x 104s Re-Instated xserver-common:s390x 104s Re-Instated libglvnd0:s390x 104s Re-Instated libglapi-mesa:s390x 104s Re-Instated libx11-xcb1:s390x 104s Re-Instated libxcb-dri3-0:s390x 104s Re-Instated libxcb-glx0:s390x 104s Re-Instated libxcb-present0:s390x 104s Re-Instated libxcb-shm0:s390x 104s Re-Instated libxcb-xfixes0:s390x 104s Re-Instated libxxf86vm1:s390x 104s Re-Instated libdrm-radeon1:s390x 104s Re-Instated libxcb-randr0:s390x 104s Re-Instated libxcb-sync1:s390x 104s Re-Instated libxshmfence1:s390x 104s Re-Instated mesa-libgallium:s390x 104s Re-Instated libwayland-server0:s390x 104s Re-Instated libgbm1:s390x 104s Re-Instated libvulkan1:s390x 104s Re-Instated libgl1-mesa-dri:s390x 104s Re-Instated libglx-mesa0:s390x 104s Re-Instated libglx0:s390x 104s Re-Instated libgl1:s390x 104s Re-Instated libpixman-1-0:s390x 104s Re-Instated libfontenc1:s390x 104s Re-Instated libfreetype6:s390x 104s Re-Instated libxfont2:s390x 104s Re-Instated xvfb:s390x 104s Re-Instated python3-pyvirtualdisplay:s390x 104s Re-Instated python3-pytest-xvfb: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: silx but it is not going to be installed 104s Depends: python3-silx 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: WARNING: Test dependencies are unsatisfiable with using apt pinning. Retrying with using all packages from plucky-proposed 104s autopkgtest: DBG: testbed command ['rm', '/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s 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', 'silx, python3-silx, python-silx-doc, python3-all, python3-pytest, python3-pytest-mock, python3-pytest-xvfb, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 104s Reading package lists... 104s Building dependency tree... 104s 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 silx:s390x < none | 2.2.0+dfsg-1 @un uH > 104s Considering silx:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Reinst Failed early because of python3-silx:s390x 104s Considering silx:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Broken satisfy:command-line:s390x Depends on python3-silx:s390x < none @un H > 104s Broken satisfy:command-line:s390x Depends on python-silx-doc:s390x < none | 2.2.0+dfsg-1 @un uH > 104s Considering python-silx-doc:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated fonts-mathjax:s390x 104s Re-Instated libjs-mathjax:s390x 104s Re-Instated libjs-jquery:s390x 104s Re-Instated libjs-underscore:s390x 104s Re-Instated libjs-sphinxdoc:s390x 104s Re-Instated python-silx-doc:s390x 104s Broken satisfy:command-line:s390x Depends on python3-all:s390x < none | 3.13.1-1~exp2 @un uH > 104s Considering python3-all:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated libpython3.12-minimal:s390x 104s Re-Instated python3.12-minimal:s390x 104s Re-Instated libnsl2:s390x 104s Re-Instated libpython3.12-stdlib:s390x 104s Re-Instated python3.12:s390x 104s Re-Instated python3-all:s390x 104s Broken satisfy:command-line:s390x Depends on python3-pytest:s390x < none | 8.3.4-1 @un uH > 104s Considering python3-pytest:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated python3-iniconfig:s390x 104s Re-Instated python3-packaging:s390x 104s Re-Instated python3-pluggy:s390x 104s Re-Instated python3-pytest:s390x 104s Broken satisfy:command-line:s390x Depends on python3-pytest-mock:s390x < none | 3.14.0-2 @un uH > 104s Considering python3-pytest-mock:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated python3-pytest-mock:s390x 104s Broken satisfy:command-line:s390x Depends on python3-pytest-xvfb:s390x < none | 3.0.0-2 @un uH > 104s Considering python3-pytest-xvfb:s390x 1 as a solution to satisfy:command-line:s390x 9998 104s Re-Instated x11-common:s390x 104s Re-Instated libice6:s390x 104s Re-Instated libsm6:s390x 104s Re-Instated libxt6t64:s390x 104s Re-Instated libxmu6:s390x 104s Re-Instated libxpm4:s390x 104s Re-Instated libxaw7:s390x 104s Re-Instated libxkbfile1:s390x 104s Re-Instated libxrender1:s390x 104s Re-Instated libxrandr2:s390x 104s Re-Instated x11-xkb-utils:s390x 104s Re-Instated xserver-common:s390x 104s Re-Instated libglvnd0:s390x 104s Re-Instated libglapi-mesa:s390x 104s Re-Instated libx11-xcb1:s390x 104s Re-Instated libxcb-dri3-0:s390x 104s Re-Instated libxcb-glx0:s390x 104s Re-Instated libxcb-present0:s390x 104s Re-Instated libxcb-shm0:s390x 104s Re-Instated libxcb-xfixes0:s390x 104s Re-Instated libxxf86vm1:s390x 104s Re-Instated libdrm-radeon1:s390x 104s Re-Instated libxcb-randr0:s390x 104s Re-Instated libxcb-sync1:s390x 104s Re-Instated libxshmfence1:s390x 104s Re-Instated mesa-libgallium:s390x 104s Re-Instated libwayland-server0:s390x 104s Re-Instated libgbm1:s390x 104s Re-Instated libvulkan1:s390x 104s Re-Instated libgl1-mesa-dri:s390x 104s Re-Instated libglx-mesa0:s390x 104s Re-Instated libglx0:s390x 104s Re-Instated libgl1:s390x 104s Re-Instated libpixman-1-0:s390x 104s Re-Instated libfontenc1:s390x 104s Re-Instated libfreetype6:s390x 104s Re-Instated libxfont2:s390x 104s Re-Instated xvfb:s390x 104s Re-Instated python3-pyvirtualdisplay:s390x 104s Re-Instated python3-pytest-xvfb:s390x 104s Done 105s Some packages could not be installed. This may mean that you have 105s requested an impossible situation or if you are using the unstable 105s distribution that some required packages have not yet been created 105s or been moved out of Incoming. 105s The following information may help to resolve the situation: 105s 105s The following packages have unmet dependencies: 105s satisfy:command-line : Depends: silx but it is not going to be installed 105s Depends: python3-silx but it is not installable 105s E: Unable to correct problems, you have held broken packages. 105s no-opencl FAIL badpkg 105s blame: silx 105s badpkg: 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. 105s autopkgtest: DBG: testbed command exited with code 100 105s autopkgtest: DBG: apt-get satisfy failed; status-fd: 105s 105s 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. 105s autopkgtest [23:26:51]: test opencl: preparing testbed 105s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['silx', 'python3-silx', 'python-silx-doc', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'], deps_new=['silx', 'python3-silx', 'python-silx-doc', 'clinfo', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 105s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 105s autopkgtest: DBG: install_deps: deps_new=['silx', 'python3-silx', 'python-silx-doc', 'clinfo', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'] 105s autopkgtest: DBG: install-deps: satisfying silx, python3-silx, python-silx-doc, clinfo, python3-all, python3-pytest, python3-pytest-mock, python3-pytest-xvfb, xauth, xvfb 105s autopkgtest: DBG: can use apt-get on testbed: True 105s 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', 'silx, python3-silx, python-silx-doc, clinfo, python3-all, python3-pytest, python3-pytest-mock, python3-pytest-xvfb, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 105s Reading package lists... 105s Building dependency tree... 105s Reading state information... 105s Starting pkgProblemResolver with broken count: 1 105s Starting 2 pkgProblemResolver with broken count: 1 105s Investigating (0) satisfy:command-line:s390x < none -> 1 @un puN Ib > 105s Broken satisfy:command-line:s390x Depends on silx:s390x < none | 2.2.0+dfsg-1 @un uH > 105s Considering silx:s390x 1 as a solution to satisfy:command-line:s390x 9998 105s Reinst Failed early because of python3-silx:s390x 105s Considering silx:s390x 1 as a solution to satisfy:command-line:s390x 9998 105s Broken satisfy:command-line:s390x Depends on python3-silx:s390x < none @un H > 105s Broken satisfy:command-line:s390x Depends on python-silx-doc:s390x < none | 2.2.0+dfsg-1 @un uH > 105s Considering python-silx-doc:s390x 1 as a solution to satisfy:command-line:s390x 9998 105s Re-Instated fonts-mathjax:s390x 105s Re-Instated libjs-mathjax:s390x 105s Re-Instated libjs-jquery:s390x 105s Re-Instated libjs-underscore:s390x 105s Re-Instated libjs-sphinxdoc:s390x 105s Re-Instated python-silx-doc:s390x 105s Broken satisfy:command-line:s390x Depends on clinfo:s390x < none | 3.0.25.02.14-1 @un uH > 105s Considering clinfo:s390x 1 as a solution to satisfy:command-line:s390x 9998 105s Re-Instated ocl-icd-libopencl1:s390x 105s Re-Instated clinfo:s390x 105s Broken satisfy:command-line:s390x Depends on python3-all:s390x < none | 3.13.1-1~exp2 @un uH > 105s Considering python3-all:s390x 1 as a solution to satisfy:command-line:s390x 9998 105s Re-Instated libpython3.12-minimal:s390x 105s Re-Instated python3.12-minimal:s390x 105s Re-Instated libnsl2:s390x 105s Re-Instated libpython3.12-stdlib:s390x 105s Re-Instated python3.12:s390x 105s Re-Instated python3-all:s390x 105s Broken satisfy:command-line:s390x Depends on python3-pytest:s390x < none | 8.3.4-1 @un uH > 105s Considering python3-pytest:s390x 1 as a solution to satisfy:command-line:s390x 9998 105s Re-Instated python3-iniconfig:s390x 105s Re-Instated python3-packaging:s390x 105s Re-Instated python3-pluggy:s390x 105s Re-Instated python3-pytest:s390x 105s Broken satisfy:command-line:s390x Depends on python3-pytest-mock:s390x < none | 3.14.0-2 @un uH > 105s Considering python3-pytest-mock:s390x 1 as a solution to satisfy:command-line:s390x 9998 105s Re-Instated python3-pytest-mock:s390x 105s Broken satisfy:command-line:s390x Depends on python3-pytest-xvfb:s390x < none | 3.0.0-2 @un uH > 105s Considering python3-pytest-xvfb:s390x 1 as a solution to satisfy:command-line:s390x 9998 105s Re-Instated x11-common:s390x 105s Re-Instated libice6:s390x 105s Re-Instated libsm6:s390x 105s Re-Instated libxt6t64:s390x 105s Re-Instated libxmu6:s390x 105s Re-Instated libxpm4:s390x 105s Re-Instated libxaw7:s390x 105s Re-Instated libxkbfile1:s390x 105s Re-Instated libxrender1:s390x 105s Re-Instated libxrandr2:s390x 105s Re-Instated x11-xkb-utils:s390x 105s Re-Instated xserver-common:s390x 105s Re-Instated libglvnd0:s390x 105s Re-Instated libglapi-mesa:s390x 105s Re-Instated libx11-xcb1:s390x 105s Re-Instated libxcb-dri3-0:s390x 105s Re-Instated libxcb-glx0:s390x 105s Re-Instated libxcb-present0:s390x 105s Re-Instated libxcb-shm0:s390x 105s Re-Instated libxcb-xfixes0:s390x 105s Re-Instated libxxf86vm1:s390x 105s Re-Instated libdrm-radeon1:s390x 105s Re-Instated libxcb-randr0:s390x 105s Re-Instated libxcb-sync1:s390x 105s Re-Instated libxshmfence1:s390x 105s Re-Instated mesa-libgallium:s390x 105s Re-Instated libwayland-server0:s390x 105s Re-Instated libgbm1:s390x 105s Re-Instated libvulkan1:s390x 105s Re-Instated libgl1-mesa-dri:s390x 105s Re-Instated libglx-mesa0:s390x 105s Re-Instated libglx0:s390x 105s Re-Instated libgl1:s390x 105s Re-Instated libpixman-1-0:s390x 105s Re-Instated libfontenc1:s390x 105s Re-Instated libfreetype6:s390x 105s Re-Instated libxfont2:s390x 105s Re-Instated xvfb:s390x 105s Re-Instated python3-pyvirtualdisplay:s390x 105s Re-Instated python3-pytest-xvfb:s390x 105s Done 105s Some packages could not be installed. This may mean that you have 105s requested an impossible situation or if you are using the unstable 105s distribution that some required packages have not yet been created 105s or been moved out of Incoming. 105s The following information may help to resolve the situation: 105s 105s The following packages have unmet dependencies: 105s satisfy:command-line : Depends: silx but it is not going to be installed 105s Depends: python3-silx but it is not installable 105s E: Unable to correct problems, you have held broken packages. 105s opencl FAIL badpkg 105s blame: silx 105s badpkg: 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. 105s autopkgtest: DBG: testbed command exited with code 100 105s autopkgtest: DBG: apt-get satisfy failed; status-fd: 105s 105s 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. 105s autopkgtest [23:26:51]: test command1: preparing testbed 105s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['silx', 'python3-silx', 'python-silx-doc', 'clinfo', 'python3-all', 'python3-pytest', 'python3-pytest-mock', 'python3-pytest-xvfb', 'xauth', 'xvfb'], deps_new=['mesa-utils', 'silx', 'xauth', 'xvfb'] 105s autopkgtest: DBG: testbed reset 105s autopkgtest: DBG: sending command to testbed: revert 201s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.bkO2k8 201s autopkgtest: DBG: sending command to testbed: print-execute-command 201s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.x3s3giss/runcmd 201s autopkgtest: DBG: sending command to testbed: capabilities 201s autopkgtest: DBG: got reply from testbed: ok revert revert-full-system ok isolation-machine suggested-normal-user=ubuntu root-on-testbed reboot 201s autopkgtest: DBG: testbed capabilities: ['revert', 'revert-full-system', 'ok', 'isolation-machine', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'reboot', 'has_internet'] 201s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bkO2k8'], kind short, sout raw, serr pipe, env [] 201s autopkgtest: DBG: testbed command exited with code 0 201s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.bkO2k8/wrapper.sh 201s autopkgtest: DBG: got reply from testbed: ok 201s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bkO2k8/wrapper.sh'], kind short, sout raw, serr pipe, env [] 201s autopkgtest: DBG: testbed command exited with code 0 201s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 201s autopkgtest: DBG: testbed command exited with code 0 201s autopkgtest [23:28:27]: testbed dpkg architecture: s390x 201s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 201s autopkgtest: DBG: testbed command exited with code 0 201s autopkgtest [23:28:27]: testbed apt version: 2.9.30 201s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 202s autopkgtest: DBG: testbed command exited with code 0 202s autopkgtest: DBG: testbed has eatmydata 202s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 202s autopkgtest: DBG: testbed command exited with code 0 202s autopkgtest [23:28:28]: @@@@@@@@@@@@@@@@@@@@ test bed setup 202s 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 [] 202s autopkgtest: DBG: testbed command exited with code 0 202s autopkgtest [23:28:28]: testbed release detected to be: plucky 202s 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 [] 202s autopkgtest: DBG: testbed command exited with code 0 202s 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 [] 202s autopkgtest: DBG: testbed command exited with code 0 202s autopkgtest: DBG: adding APT source: Types: deb deb-src 202s URIs: http://ftpmaster.internal/ubuntu/ 202s Suites: plucky-proposed 202s Components: main restricted universe multiverse 202s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 202s 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 [] 202s autopkgtest: DBG: testbed command exited with code 0 202s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 202s Package: * 202s Pin: release plucky-proposed 202s Pin-Priority: 500 202s 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 [] 203s autopkgtest: DBG: testbed command exited with code 0 203s autopkgtest [23:28:29]: updating testbed package index (apt update) 203s 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'] 203s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 203s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 203s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 203s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 203s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [81.0 kB] 203s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [16.3 kB] 203s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [739 kB] 203s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 203s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [106 kB] 204s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 204s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [665 kB] 204s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5472 B] 204s Fetched 1727 kB in 1s (1964 kB/s) 204s Reading package lists... 204s autopkgtest: DBG: testbed command exited with code 0 204s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 204s Package: * 204s Pin: release plucky-proposed 204s Pin-Priority: 100 204s 204s Package: src:clinfo:any src:nabu:any src:silx:any 204s Pin: release plucky-proposed 204s Pin-Priority: 995 204s 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:clinfo:any src:nabu:any src:silx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 204s autopkgtest: DBG: testbed command exited with code 0 204s 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.bkO2k8/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 205s autopkgtest: DBG: testbed command exited with code 0 205s 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'] 205s + lsb_release --codename --short 205s Reading package lists... 205s Building dependency tree...+ RELEASE=plucky 205s + cat 205s + [ plucky != trusty ] 205s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 205s 205s Reading state information... 205s Calculating upgrade... 205s The following packages were automatically installed and are no longer required: 205s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 205s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 205s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 205s linux-tools-6.11.0-8-generic 205s Use 'sudo apt autoremove' to remove them. 205s The following packages will be upgraded: 205s apparmor iproute2 libapparmor1 libgpgme11t64 liblsof0 libp11-kit0 205s liburcu8t64 lsof lto-disabled-list python-apt-common python3-apt 205s sysvinit-utils 205s 12 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 205s Need to get 3078 kB of archives. 205s After this operation, 213 kB of additional disk space will be used. 205s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x sysvinit-utils s390x 3.14-1ubuntu1 [36.0 kB] 205s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 206s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libapparmor1 s390x 4.1.0~beta5-0ubuntu2 [54.1 kB] 206s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 206s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python-apt-common all 2.9.9 [21.2 kB] 206s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3-apt s390x 2.9.9 [185 kB] 206s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x apparmor s390x 4.1.0~beta5-0ubuntu2 [758 kB] 206s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x liburcu8t64 s390x 0.15.1-1 [66.0 kB] 206s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 206s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 206s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgme11t64 s390x 1.24.2-1ubuntu1 [154 kB] 206s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x lto-disabled-list all 55 [12.3 kB] 206s Preconfiguring packages ... 206s Fetched 3078 kB in 1s (4757 kB/s) 206s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 206s Preparing to unpack .../sysvinit-utils_3.14-1ubuntu1_s390x.deb ... 206s Unpacking sysvinit-utils (3.14-1ubuntu1) over (3.08-6ubuntu3) ... 206s Setting up sysvinit-utils (3.14-1ubuntu1) ... 206s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 206s Preparing to unpack .../00-iproute2_6.13.0-1ubuntu1_s390x.deb ... 206s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 206s Preparing to unpack .../01-libapparmor1_4.1.0~beta5-0ubuntu2_s390x.deb ... 206s Unpacking libapparmor1:s390x (4.1.0~beta5-0ubuntu2) over (4.1.0~beta1-0ubuntu5) ... 206s Preparing to unpack .../02-libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 206s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 206s Preparing to unpack .../03-python-apt-common_2.9.9_all.deb ... 206s Unpacking python-apt-common (2.9.9) over (2.9.8) ... 206s Preparing to unpack .../04-python3-apt_2.9.9_s390x.deb ... 206s /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. 206s for fn in glob1(directory, "%s.*" % fname): 206s Unpacking python3-apt (2.9.9) over (2.9.8) ... 206s Preparing to unpack .../05-apparmor_4.1.0~beta5-0ubuntu2_s390x.deb ... 207s Unpacking apparmor (4.1.0~beta5-0ubuntu2) over (4.1.0~beta1-0ubuntu5) ... 207s dpkg: warning: unable to delete old directory '/lib/apparmor': Directory not empty 207s Preparing to unpack .../06-liburcu8t64_0.15.1-1_s390x.deb ... 207s Unpacking liburcu8t64:s390x (0.15.1-1) over (0.15.0-1) ... 207s Preparing to unpack .../07-lsof_4.99.4+dfsg-1_s390x.deb ... 207s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 207s Preparing to unpack .../08-liblsof0_4.99.4+dfsg-1_s390x.deb ... 207s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 207s Preparing to unpack .../09-libgpgme11t64_1.24.2-1ubuntu1_s390x.deb ... 207s Unpacking libgpgme11t64:s390x (1.24.2-1ubuntu1) over (1.24.1-4ubuntu1) ... 207s Preparing to unpack .../10-lto-disabled-list_55_all.deb ... 207s Unpacking lto-disabled-list (55) over (54) ... 207s Setting up liburcu8t64:s390x (0.15.1-1) ... 207s Setting up lto-disabled-list (55) ... 207s Setting up libapparmor1:s390x (4.1.0~beta5-0ubuntu2) ... 207s Setting up liblsof0 (4.99.4+dfsg-1) ... 207s Setting up iproute2 (6.13.0-1ubuntu1) ... 207s Setting up apparmor (4.1.0~beta5-0ubuntu2) ... 207s Installing new version of config file /etc/apparmor.d/abstractions/dconf ... 207s Installing new version of config file /etc/apparmor.d/abstractions/mesa ... 207s Installing new version of config file /etc/apparmor.d/abstractions/nameservice ... 207s Installing new version of config file /etc/apparmor.d/abstractions/php ... 207s Installing new version of config file /etc/apparmor.d/abstractions/python ... 207s Installing new version of config file /etc/apparmor.d/slirp4netns ... 207s Installing new version of config file /etc/apparmor.d/toybox ... 207s Installing new version of config file /etc/apparmor.d/transmission ... 207s Installing new version of config file /etc/apparmor.d/tunables/global ... 208s Reloading AppArmor profiles 209s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 209s Setting up lsof (4.99.4+dfsg-1) ... 209s Setting up python-apt-common (2.9.9) ... 209s Setting up libgpgme11t64:s390x (1.24.2-1ubuntu1) ... 209s Setting up python3-apt (2.9.9) ... 209s Processing triggers for systemd (257.2-3ubuntu1) ... 209s Processing triggers for man-db (2.13.0-1) ... 210s Processing triggers for libc-bin (2.40-4ubuntu1) ... 210s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 210s + /usr/lib/apt/apt-helper analyze-pattern ?true 210s + uname -r 210s + sed s/\./\\./g 210s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 210s + apt list ?obsolete 210s + tail -n+2 210s + cut -d/ -f1 210s + grep -v ^linux-.*6\.12\.0-15-generic.* 210s + true 210s + obsolete_pkgs= 210s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 210s Reading package lists... 210s Building dependency tree... 210s Reading state information... 210s The following packages will be REMOVED: 210s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 210s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 210s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 210s linux-tools-6.11.0-8-generic* 210s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 210s After this operation, 167 MB disk space will be freed. 210s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81079 files and directories currently installed.) 210s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 210s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 210s Removing libpython3.12t64:s390x (3.12.9-1) ... 210s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 210s Removing libnsl2:s390x (1.3.0-3build3) ... 210s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 210s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 211s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 211s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 211s Processing triggers for libc-bin (2.40-4ubuntu1) ... 211s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55979 files and directories currently installed.) 211s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 211s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 212s + grep -q trusty /etc/lsb-release 212s + [ ! -d /usr/share/doc/unattended-upgrades ] 212s + [ ! -d /usr/share/doc/lxd ] 212s + [ ! -d /usr/share/doc/lxd-client ] 212s + [ ! -d /usr/share/doc/snapd ] 212s + type iptables 212s + cat 212s + chmod 755 /etc/rc.local 212s + . /etc/rc.local 212s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 212s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 212s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 212s + uname -m 212s + [ s390x = ppc64le ] 212s + [ -d /run/systemd/system ] 212s + systemd-detect-virt --quiet --vm 212s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 212s + cat 212s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 212s + echo COMPRESS=lz4 212s autopkgtest: DBG: testbed command exited with code 0 212s autopkgtest [23:28:38]: upgrading testbed (apt dist-upgrade and autopurge) 212s 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'] 212s Reading package lists... 212s Building dependency tree... 212s Reading state information... 212s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 212s Starting 2 pkgProblemResolver with broken count: 0 212s Done 212s Entering ResolveByKeep 212s 213s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 213s autopkgtest: DBG: testbed command exited with code 0 213s 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'] 213s Reading package lists... 213s Building dependency tree... 213s Reading state information... 213s Starting pkgProblemResolver with broken count: 0 213s Starting 2 pkgProblemResolver with broken count: 0 213s Done 213s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 213s autopkgtest: DBG: testbed command exited with code 0 213s 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.bkO2k8/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 213s autopkgtest: DBG: testbed command exited with code 1 213s autopkgtest [23:28:39]: rebooting testbed after setup commands that affected boot 213s autopkgtest: DBG: sending command to testbed: reboot 230s autopkgtest: DBG: got reply from testbed: ok 230s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 230s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bkO2k8'], kind short, sout raw, serr pipe, env [] 230s autopkgtest: DBG: testbed command exited with code 0 230s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.bkO2k8/autopkgtest-reboot 230s autopkgtest: DBG: got reply from testbed: ok 230s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bkO2k8'], kind short, sout raw, serr pipe, env [] 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.bkO2k8/autopkgtest-reboot-prepare 231s autopkgtest: DBG: got reply from testbed: ok 231s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 231s autopkgtest: DBG: testbed command exited with code 0 231s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.bkO2k8/testbed-packages"], kind short, sout raw, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.bkO2k8/testbed-packages /tmp/autopkgtest-work.uweljzb_/out/testbed-packages 232s autopkgtest: DBG: got reply from testbed: ok 232s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 232s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bkO2k8'], kind short, sout raw, serr pipe, env [] 232s autopkgtest: DBG: testbed command exited with code 0 232s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.bkO2k8/autopkgtest-reboot 233s autopkgtest: DBG: got reply from testbed: ok 233s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 233s autopkgtest: DBG: testbed command exited with code 0 233s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 233s autopkgtest: DBG: testbed command exited with code 0 233s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 233s autopkgtest: DBG: testbed command exited with code 0 233s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.bkO2k8'], kind short, sout raw, serr pipe, env [] 233s autopkgtest: DBG: testbed command exited with code 0 233s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.bkO2k8/autopkgtest-reboot-prepare 233s autopkgtest: DBG: got reply from testbed: ok 233s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 233s autopkgtest: DBG: testbed command exited with code 0 233s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.bkO2k8/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 234s autopkgtest: DBG: testbed command exited with code 0 234s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 234s autopkgtest: DBG: testbed command exited with code 0 234s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 234s autopkgtest: DBG: install_deps: deps_new=['mesa-utils', 'silx', 'xauth', 'xvfb'] 234s autopkgtest: DBG: install-deps: satisfying mesa-utils, silx, xauth, xvfb 234s autopkgtest: DBG: can use apt-get on testbed: True 234s 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', 'mesa-utils, silx, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 234s Reading package lists... 234s Building dependency tree... 234s Reading state information... 234s Starting pkgProblemResolver with broken count: 1 234s Starting 2 pkgProblemResolver with broken count: 1 234s Investigating (0) silx:s390x < none -> 2.2.0+dfsg-1 @un puN Ib > 234s Broken silx:s390x Depends on python3-silx:s390x < none @un H > (>= 2.2.0+dfsg-1) 234s Broken silx:s390x Depends on python3-numpy:s390x < none | 1:1.26.4+ds-13 @un uH > 234s Considering python3-numpy:s390x 1 as a solution to silx:s390x 0 234s Re-Instated libblas3:s390x 234s Re-Instated libgfortran5:s390x 234s Re-Instated liblapack3:s390x 234s Re-Instated python3-numpy:s390x 234s Done 234s Some packages could not be installed. This may mean that you have 234s requested an impossible situation or if you are using the unstable 234s distribution that some required packages have not yet been created 234s or been moved out of Incoming. 234s The following information may help to resolve the situation: 234s 234s The following packages have unmet dependencies: 234s silx : Depends: python3-silx (>= 2.2.0+dfsg-1) but it is not installable 234s E: Unable to correct problems, you have held broken packages. 234s autopkgtest: DBG: testbed command exited with code 100 234s autopkgtest: DBG: apt-get satisfy failed; status-fd: 234s 234s autopkgtest: WARNING: Test dependencies are unsatisfiable with using apt pinning. Retrying with using all packages from plucky-proposed 234s autopkgtest: DBG: testbed command ['rm', '/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref'], kind short, sout raw, serr pipe, env [] 235s autopkgtest: DBG: testbed command exited with code 0 235s 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', 'mesa-utils, silx, xauth, xvfb'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 235s Reading package lists... 235s Building dependency tree... 235s Reading state information... 235s Starting pkgProblemResolver with broken count: 1 235s Starting 2 pkgProblemResolver with broken count: 1 235s Investigating (0) silx:s390x < none -> 2.2.0+dfsg-1 @un puN Ib > 235s Broken silx:s390x Depends on python3-silx:s390x < none @un H > (>= 2.2.0+dfsg-1) 235s Broken silx:s390x Depends on python3-numpy:s390x < none | 1:2.2.3+ds-1 @un uH > 235s Considering python3-numpy:s390x 1 as a solution to silx:s390x 0 235s Re-Instated python3-numpy-dev:s390x 235s Re-Instated libblas3:s390x 235s Re-Instated libgfortran5:s390x 235s Re-Instated liblapack3:s390x 235s Re-Instated python3-numpy:s390x 235s Done 235s Some packages could not be installed. This may mean that you have 235s requested an impossible situation or if you are using the unstable 235s distribution that some required packages have not yet been created 235s or been moved out of Incoming. 235s The following information may help to resolve the situation: 235s 235s The following packages have unmet dependencies: 235s silx : Depends: python3-silx (>= 2.2.0+dfsg-1) but it is not installable 235s E: Unable to correct problems, you have held broken packages. 235s command1 FAIL badpkg 235s autopkgtest: DBG: testbed command exited with code 100 235s autopkgtest: DBG: apt-get satisfy failed; status-fd: 235s 235s 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. 235s blame: silx 235s badpkg: 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. 235s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 235s autopkgtest [23:29:01]: @@@@@@@@@@@@@@@@@@@@ summary 235s no-opencl FAIL badpkg 235s blame: silx 235s badpkg: 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. 235s opencl FAIL badpkg 235s blame: silx 235s badpkg: 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. 235s command1 FAIL badpkg 235s blame: silx 235s badpkg: 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. 235s autopkgtest: DBG: testbed stop 235s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.bkO2k8 235s autopkgtest: DBG: sending command to testbed: close 253s autopkgtest: DBG: got reply from testbed: ok 253s autopkgtest: DBG: sending command to testbed: quit 253s nova [W] Using flock in prodstack6-s390x 253s Creating nova instance adt-plucky-s390x-silx-20250219-232506-juju-7f2275-prod-proposed-migration-environment-15-098c3223-0191-4902-ada7-1f63d792ad32 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 253s nova [W] Timed out waiting for cc77d240-f1a8-4ceb-a738-46409e7e3db7 to get deleted. 253s nova [W] Using flock in prodstack6-s390x 253s Creating nova instance adt-plucky-s390x-silx-20250219-232506-juju-7f2275-prod-proposed-migration-environment-15-098c3223-0191-4902-ada7-1f63d792ad32 from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 253s nova [W] Timed out waiting for e9ca3fe0-d00c-43c3-8a1a-8b58538172be to get deleted.