0s autopkgtest: DBG: testbed init 0s autopkgtest [01:00:41]: starting date and time: 2025-02-16 01:00:41+0000 0s autopkgtest [01:00:41]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [01:00:41]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.3mwvxv96/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade mpsolve --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-21.secgroup --name adt-plucky-s390x-mpsolve-20250216-010041-juju-7f2275-prod-proposed-migration-environment-15-c4d9d8d8-f416-4ca1-82a0-5c4a0e79ef92 --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 112s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.J3Ov6Y 112s autopkgtest: DBG: sending command to testbed: print-execute-command 112s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.n3bymec2/runcmd 112s autopkgtest: DBG: sending command to testbed: capabilities 112s autopkgtest: DBG: got reply from testbed: ok revert suggested-normal-user=ubuntu revert-full-system isolation-machine reboot root-on-testbed 112s autopkgtest: DBG: testbed capabilities: ['revert', 'suggested-normal-user=ubuntu', 'revert-full-system', 'isolation-machine', 'reboot', 'root-on-testbed', 'has_internet'] 112s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.J3Ov6Y'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.J3Ov6Y/wrapper.sh 112s autopkgtest: DBG: got reply from testbed: ok 112s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.J3Ov6Y/wrapper.sh'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [01:02:34]: testbed dpkg architecture: s390x 113s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [01:02:34]: testbed apt version: 2.9.28 113s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: testbed has eatmydata 113s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [01:02:34]: @@@@@@@@@@@@@@@@@@@@ test bed setup 113s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [01:02:34]: testbed release detected to be: None 113s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: adding APT source: Types: deb deb-src 114s URIs: http://ftpmaster.internal/ubuntu/ 114s Suites: plucky-proposed 114s Components: main restricted universe multiverse 114s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 114s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 114s Package: * 114s Pin: release plucky-proposed 114s Pin-Priority: 500 114s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 114s autopkgtest: DBG: testbed command exited with code 0 114s autopkgtest [01:02:35]: updating testbed package index (apt update) 114s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 114s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 115s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 115s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 115s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 115s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.1 kB] 115s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 115s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 115s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [823 kB] 115s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [164 kB] 115s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 115s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 115s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 115s Fetched 2062 kB in 1s (2047 kB/s) 116s Reading package lists... 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 116s Package: * 116s Pin: release plucky-proposed 116s Pin-Priority: 100 116s 116s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 116s Pin: release plucky-proposed 116s Pin-Priority: 995 116s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.J3Ov6Y/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 116s autopkgtest: DBG: testbed command exited with code 0 116s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 116s + lsb_release --codename --short 116s + RELEASE=plucky 116s + cat 116s + [ plucky != trusty ] 116s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 116s Reading package lists... 116s Building dependency tree... 116s Reading state information... 117s Calculating upgrade... 117s The following packages were automatically installed and are no longer required: 117s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 117s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 117s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 117s linux-tools-6.11.0-8-generic 117s Use 'sudo apt autoremove' to remove them. 117s The following packages will be upgraded: 117s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 117s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 117s Need to get 1155 kB of archives. 117s After this operation, 16.4 kB of additional disk space will be used. 117s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 117s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 117s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 117s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 117s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 117s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 117s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 118s Preconfiguring packages ... 118s Fetched 1155 kB in 1s (1861 kB/s) 118s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 118s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 118s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 118s Setting up dash (0.5.12-12ubuntu1) ... 118s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 118s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 118s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 118s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 118s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 118s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 118s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 118s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 118s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 118s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 118s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 118s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 118s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 118s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 118s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 118s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 118s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 118s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 118s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 118s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 118s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 118s Setting up libtasn1-6:s390x (4.20.0-2) ... 118s Processing triggers for libc-bin (2.40-4ubuntu1) ... 118s Processing triggers for man-db (2.13.0-1) ... 119s Processing triggers for debianutils (5.21) ... 119s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 119s + /usr/lib/apt/apt-helper analyze-pattern ?true 119s + uname -r 119s + sed s/\./\\./g 119s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 119s + apt list ?obsolete 119s + tail -n+2 119s + cut -d/ -f1 119s + grep -v ^linux-.*6\.12\.0-15-generic.* 119s + true 119s + obsolete_pkgs= 119s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 119s Reading package lists... 119s Building dependency tree... 119s Reading state information... 119s The following packages will be REMOVED: 119s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 119s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 119s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 119s linux-tools-6.11.0-8-generic* 119s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 119s After this operation, 167 MB disk space will be freed. 119s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 80969 files and directories currently installed.) 119s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 119s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 119s Removing libpython3.12t64:s390x (3.12.9-1) ... 119s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 119s Removing libnsl2:s390x (1.3.0-3build3) ... 119s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 119s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 120s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 120s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 120s Processing triggers for libc-bin (2.40-4ubuntu1) ... 120s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 120s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 120s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 121s + grep -q trusty /etc/lsb-release 121s + [ ! -d /usr/share/doc/unattended-upgrades ] 121s + [ ! -d /usr/share/doc/lxd ] 121s + [ ! -d /usr/share/doc/lxd-client ] 121s + [ ! -d /usr/share/doc/snapd ] 121s + type iptables 121s + cat 121s + chmod 755 /etc/rc.local 121s + . /etc/rc.local 121s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 121s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 121s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 121s + uname -m 121s + [ s390x = ppc64le ] 121s + [ -d /run/systemd/system ] 121s + systemd-detect-virt --quiet --vm 121s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 121s + cat 121s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 121s + echo COMPRESS=lz4 121s autopkgtest: DBG: testbed command exited with code 0 121s autopkgtest [01:02:42]: upgrading testbed (apt dist-upgrade and autopurge) 121s 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'] 121s Reading package lists... 121s Building dependency tree... 121s Reading state information... 121s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 121s Starting 2 pkgProblemResolver with broken count: 0 121s Done 121s Entering ResolveByKeep 121s 122s The following packages will be upgraded: 122s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 122s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 122s Need to get 10.7 MB of archives. 122s After this operation, 305 kB of additional disk space will be used. 122s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 122s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 122s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 122s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 123s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 123s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 123s Preconfiguring packages ... 123s Fetched 10.7 MB in 1s (10.6 MB/s) 123s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55867 files and directories currently installed.) 123s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 123s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 123s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 123s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 123s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 123s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 123s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 123s Checking for services that may need to be restarted... 123s Checking init scripts... 123s Checking for services that may need to be restarted... 123s Checking init scripts... 123s Stopping some services possibly affected by the upgrade (will be restarted later): 123s cron: stopping...done. 123s 123s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 123s Setting up libc6:s390x (2.41-1ubuntu1) ... 123s Checking for services that may need to be restarted... 123s Checking init scripts... 123s Restarting services possibly affected by the upgrade: 124s cron: restarting...done. 124s 124s Services restarted successfully. 124s (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 ... 55868 files and directories currently installed.) 124s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 124s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 124s Setting up libc-bin (2.41-1ubuntu1) ... 124s (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 ... 55868 files and directories currently installed.) 124s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 124s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 124s Setting up iproute2 (6.13.0-1ubuntu1) ... 124s Setting up locales (2.41-1ubuntu1) ... 124s Installing new version of config file /etc/locale.alias ... 124s Generating locales (this might take a while)... 125s en_US.UTF-8... done 125s Generation complete. 125s Setting up libc-dev-bin (2.41-1ubuntu1) ... 125s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 125s Processing triggers for man-db (2.13.0-1) ... 126s Processing triggers for systemd (257.2-3ubuntu1) ... 127s autopkgtest: DBG: testbed command exited with code 0 127s 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'] 127s Reading package lists... 127s Building dependency tree... 127s Reading state information... 127s Starting pkgProblemResolver with broken count: 0 127s Starting 2 pkgProblemResolver with broken count: 0 127s Done 128s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 128s autopkgtest: DBG: testbed command exited with code 0 128s 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.J3Ov6Y/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 128s autopkgtest: DBG: testbed command exited with code 1 128s autopkgtest [01:02:49]: rebooting testbed after setup commands that affected boot 128s autopkgtest: DBG: sending command to testbed: reboot 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 148s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.J3Ov6Y'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot 148s autopkgtest: DBG: got reply from testbed: ok 148s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.J3Ov6Y'], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot-prepare 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest [01:03:11]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 150s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.J3Ov6Y/testbed-packages"], kind short, sout raw, serr pipe, env [] 150s autopkgtest: DBG: testbed command exited with code 0 150s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.J3Ov6Y/testbed-packages /tmp/autopkgtest-work.3mwvxv96/out/testbed-packages 150s autopkgtest: DBG: got reply from testbed: ok 150s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 150s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.J3Ov6Y'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.J3Ov6Y'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot-prepare 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.J3Ov6Y/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: Binaries: initialising 152s autopkgtest [01:03:13]: @@@@@@@@@@@@@@@@@@@@ apt-source mpsolve 152s autopkgtest: DBG: blame += mpsolve 152s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 152s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'mpsolve'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mpsolve$'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mpsolve=3.2.1-10.1build4'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libmps-dev$'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libmps-dev=3.2.1-10.1build4'], kind short, sout pipe, serr raw, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libmps-fortran-dev$'], kind short, sout pipe, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libmps-fortran-dev=3.2.1-10.1build4'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^xmpsolve$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'xmpsolve=3.2.1-10.1build4'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libmps3t64$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libmps3t64=3.2.1-10.1build4'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^mandelbrot-solver$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'mandelbrot-solver=3.2.1-10.1build4'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^libmps-fortran0t64$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'libmps-fortran0t64=3.2.1-10.1build4'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-mpsolve$'], kind short, sout pipe, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-mpsolve=3.2.1-10.1build4'], kind short, sout pipe, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: install_deps: deps_new=[] 156s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s 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.J3Ov6Y/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source mpsolve=3.2.1-10.1build4 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 mpsolve_*.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=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 156s + cd / 156s + mktemp -d /tmp/autopkgtest.J3Ov6Y/build.XXX 156s + builddir=/tmp/autopkgtest.J3Ov6Y/build.p4m 156s + cd /tmp/autopkgtest.J3Ov6Y/build.p4m 156s + apt-get source -d -q --only-source mpsolve=3.2.1-10.1build4 157s + OUT=Reading package lists... 157s NOTICE: 'mpsolve' packaging is maintained in the 'Git' version control system at: 157s https://salsa.debian.org/math-team/mpsolve.git 157s Please use: 157s git clone https://salsa.debian.org/math-team/mpsolve.git 157s to retrieve the latest (possibly unreleased) updates to the package. 157s Need to get 3285 kB of source archives. 157s Get:1 http://ftpmaster.internal/ubuntu plucky/universe mpsolve 3.2.1-10.1build4 (dsc) [2800 B] 157s Get:2 http://ftpmaster.internal/ubuntu plucky/universe mpsolve 3.2.1-10.1build4 (tar) [3271 kB] 157s Get:3 http://ftpmaster.internal/ubuntu plucky/universe mpsolve 3.2.1-10.1build4 (diff) [11.5 kB] 157s Fetched 3285 kB in 1s (4258 kB/s) 157s Download complete and in download only mode 157s + [ -n ] 157s + grep ^Get: 157s + echo Reading package lists... 157s NOTICE: 'mpsolve' packaging is maintained in the 'Git' version control system at: 157s https://salsa.debian.org/math-team/mpsolve.git 157s Please use: 157s git clone https://salsa.debian.org/math-team/mpsolve.git 157s to retrieve the latest (possibly unreleased) updates to the package. 157s Need to get 3285 kB of source archives. 157s Get:1 http://ftpmaster.internal/ubuntu plucky/universe mpsolve 3.2.1-10.1build4 (dsc) [2800 B] 157s Get:2 http://ftpmaster.internal/ubuntu plucky/universe mpsolve 3.2.1-10.1build4 (tar) [3271 kB] 157s Get:3 http://ftpmaster.internal/ubuntu plucky/universe mpsolve 3.2.1-10.1build4 (diff) [11.5 kB] 157s Fetched 3285 kB in 1s (4258 kB/s) 157s Download complete and in download only mode 157s Get:1 http://ftpmaster.internal/ubuntu plucky/universe mpsolve 3.2.1-10.1build4 (dsc) [2800 B] 157s Get:2 http://ftpmaster.internal/ubuntu plucky/universe mpsolve 3.2.1-10.1build4 (tar) [3271 kB] 157s Get:3 http://ftpmaster.internal/ubuntu plucky/universe mpsolve 3.2.1-10.1build4 (diff) [11.5 kB] 157s + dpkg-source -x mpsolve_3.2.1-10.1build4.dsc src 157s gpgv: Signature made Fri Apr 12 05:41:07 2024 UTC 157s gpgv: using RSA key AC483F68DE728F43F2202FCA568D30F321B2133D 157s gpgv: issuer "steve.langasek@ubuntu.com" 157s gpgv: Can't check signature: No public key 157s dpkg-source: warning: cannot verify inline signature for ./mpsolve_3.2.1-10.1build4.dsc: no acceptable signature found 157s + chmod -R a+rX . 158s + cd src/. 158s + pwd 158s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest [01:03:19]: testing package mpsolve version 3.2.1-10.1build4 158s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.J3Ov6Y/build.p4m/src/debian/ /tmp/autopkgtest-work.3mwvxv96/out/pkg/debian/ 158s autopkgtest: DBG: got reply from testbed: ok 158s autopkgtest: DBG: processing dependency build-essential 158s autopkgtest: DBG: processing dependency libgmp-dev 158s autopkgtest: DBG: processing dependency @ 158s autopkgtest: DBG: synthesised dependency mpsolve 158s autopkgtest: DBG: synthesised dependency libmps3t64 158s autopkgtest: DBG: synthesised dependency libmps-dev 158s autopkgtest: DBG: synthesised dependency libmps-fortran0t64 158s autopkgtest: DBG: synthesised dependency libmps-fortran-dev 158s autopkgtest: DBG: synthesised dependency python3-mpsolve 158s autopkgtest: DBG: synthesised dependency xmpsolve 158s autopkgtest: DBG: synthesised dependency mandelbrot-solver 158s autopkgtest: DBG: Test defined: name command1 path None command "gcc examples/C/root_of_unity.c -lm -lgmp -lmps -pthread && mpsolve -p "x^4-6*x^9+6/7*x + 5"" restrictions [] features [] depends ['build-essential', 'libgmp-dev', 'mpsolve', 'libmps3t64', 'libmps-dev', 'libmps-fortran0t64', 'libmps-fortran-dev', 'python3-mpsolve', 'xmpsolve', 'mandelbrot-solver'] 158s autopkgtest [01:03:19]: build not needed 158s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.J3Ov6Y/build.p4m/src/ /tmp/autopkgtest-work.3mwvxv96/out/tests-tree/ 159s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: processing dependency build-essential 160s autopkgtest: DBG: processing dependency libgmp-dev 160s autopkgtest: DBG: processing dependency @ 160s autopkgtest: DBG: synthesised dependency mpsolve 160s autopkgtest: DBG: synthesised dependency libmps3t64 160s autopkgtest: DBG: synthesised dependency libmps-dev 160s autopkgtest: DBG: synthesised dependency libmps-fortran0t64 160s autopkgtest: DBG: synthesised dependency libmps-fortran-dev 160s autopkgtest: DBG: synthesised dependency python3-mpsolve 160s autopkgtest: DBG: synthesised dependency xmpsolve 160s autopkgtest: DBG: synthesised dependency mandelbrot-solver 160s autopkgtest: DBG: Test defined: name command1 path None command "gcc examples/C/root_of_unity.c -lm -lgmp -lmps -pthread && mpsolve -p "x^4-6*x^9+6/7*x + 5"" restrictions [] features [] depends ['build-essential', 'libgmp-dev', 'mpsolve', 'libmps3t64', 'libmps-dev', 'libmps-fortran0t64', 'libmps-fortran-dev', 'python3-mpsolve', 'xmpsolve', 'mandelbrot-solver'] 160s autopkgtest [01:03:21]: test command1: preparing testbed 160s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['build-essential', 'libgmp-dev', 'mpsolve', 'libmps3t64', 'libmps-dev', 'libmps-fortran0t64', 'libmps-fortran-dev', 'python3-mpsolve', 'xmpsolve', 'mandelbrot-solver'] 160s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 160s autopkgtest: DBG: install_deps: deps_new=['build-essential', 'libgmp-dev', 'mpsolve', 'libmps3t64', 'libmps-dev', 'libmps-fortran0t64', 'libmps-fortran-dev', 'python3-mpsolve', 'xmpsolve', 'mandelbrot-solver'] 160s autopkgtest: DBG: install-deps: satisfying build-essential, libgmp-dev, mpsolve, libmps3t64, libmps-dev, libmps-fortran0t64, libmps-fortran-dev, python3-mpsolve, xmpsolve, mandelbrot-solver 160s autopkgtest: DBG: can use apt-get on testbed: True 160s 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', 'build-essential, libgmp-dev, mpsolve, libmps3t64, libmps-dev, libmps-fortran0t64, libmps-fortran-dev, python3-mpsolve, xmpsolve, mandelbrot-solver'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 160s Reading package lists... 160s Building dependency tree... 160s Reading state information... 160s Starting pkgProblemResolver with broken count: 0 160s Starting 2 pkgProblemResolver with broken count: 0 160s Done 160s The following NEW packages will be installed: 160s adwaita-icon-theme at-spi2-common build-essential cpp cpp-14 160s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu dconf-gsettings-backend 160s dconf-service fontconfig fontconfig-config fonts-dejavu-core 160s fonts-dejavu-mono g++ g++-14 g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc 160s gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gtk-update-icon-cache 160s hicolor-icon-theme libasan8 libatk-bridge2.0-0t64 libatk1.0-0t64 160s libatspi2.0-0t64 libavahi-client3 libavahi-common-data libavahi-common3 160s libcairo-gobject2 libcairo2 libcc1-0 libcolord2 libcups2t64 libdatrie1 160s libdconf1 libdeflate0 libdouble-conversion3 libdrm-radeon1 libegl-mesa0 160s libegl1 libepoxy0 libfontconfig1 libfreetype6 libgbm1 libgcc-14-dev 160s libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgl1 libgl1-mesa-dri 160s libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgmp-dev libgmpxx4ldbl 160s libgomp1 libgraphite2-3 libgtk-3-0t64 libgtk-3-common libharfbuzz0b libice6 160s libinput-bin libinput10 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 160s liblcms2-2 libmd4c0 libmpc3 libmps-dev libmps-fortran-dev libmps-fortran0t64 160s libmps3t64 libmtdev1t64 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 160s libpcre2-16-0 libpixman-1-0 libqt5core5t64 libqt5dbus5t64 libqt5gui5t64 160s libqt5network5t64 libqt5widgets5t64 libsharpyuv0 libsm6 libstdc++-14-dev 160s libthai-data libthai0 libtiff6 libubsan1 libvulkan1 libwacom-common 160s libwacom9 libwayland-client0 libwayland-cursor0 libwayland-egl1 160s libwayland-server0 libwebp7 libx11-xcb1 libxcb-dri3-0 libxcb-glx0 160s libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 160s libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 160s libxcb-util1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 160s libxcomposite1 libxcursor1 libxdamage1 libxfixes3 libxi6 libxinerama1 160s libxkbcommon-x11-0 libxrandr2 libxrender1 libxshmfence1 libxxf86vm1 160s mandelbrot-solver mesa-libgallium mpsolve python3-mpsolve x11-common 160s xmpsolve 161s 0 upgraded, 138 newly installed, 0 to remove and 0 not upgraded. 161s Need to get 81.2 MB of archives. 161s After this operation, 283 MB of additional disk space will be used. 161s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 161s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 161s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 161s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 161s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 161s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 161s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 161s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 161s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 161s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x gtk-update-icon-cache s390x 4.17.4+ds-4 [52.9 kB] 161s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x hicolor-icon-theme all 0.18-2 [13.3 kB] 161s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x adwaita-icon-theme all 48~beta-3 [578 kB] 161s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x at-spi2-common all 2.55.2-1 [8916 B] 161s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 161s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 161s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 161s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 161s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 161s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 161s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 161s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 161s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 161s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 162s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 162s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 162s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 162s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 162s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 162s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 162s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 162s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 162s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 162s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 162s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 162s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 162s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libdconf1 s390x 0.40.0-5 [40.0 kB] 162s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-service s390x 0.40.0-5 [28.4 kB] 162s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x dconf-gsettings-backend s390x 0.40.0-5 [22.8 kB] 162s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 163s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 163s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 163s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 163s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 163s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 163s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libatk1.0-0t64 s390x 2.55.2-1 [54.8 kB] 163s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libxi6 s390x 2:1.8.2-1 [35.4 kB] 163s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libatspi2.0-0t64 s390x 2.55.2-1 [80.3 kB] 163s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libatk-bridge2.0-0t64 s390x 2.55.2-1 [66.7 kB] 163s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common-data s390x 0.8-14ubuntu1 [30.5 kB] 163s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-common3 s390x 0.8-14ubuntu1 [23.6 kB] 163s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libavahi-client3 s390x 0.8-14ubuntu1 [26.8 kB] 163s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 163s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 163s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 163s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 163s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 163s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 163s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 163s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libcolord2 s390x 1.4.7-1build2 [151 kB] 163s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libcups2t64 s390x 2.4.11-0ubuntu2 [282 kB] 163s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 163s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x libdouble-conversion3 s390x 3.3.0-1build1 [43.9 kB] 163s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libdrm-radeon1 s390x 2.4.123-1 [22.4 kB] 163s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 163s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libglapi-mesa s390x 24.3.4-3ubuntu1 [68.4 kB] 163s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 163s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 163s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-present0 s390x 1.17.0-2 [6244 B] 163s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-randr0 s390x 1.17.0-2 [19.2 kB] 163s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-sync1 s390x 1.17.0-2 [9488 B] 163s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xfixes0 s390x 1.17.0-2 [10.5 kB] 163s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libxshmfence1 s390x 1.3-1build5 [4772 B] 163s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x mesa-libgallium s390x 24.3.4-3ubuntu1 [7967 kB] 163s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libgbm1 s390x 24.3.4-3ubuntu1 [34.5 kB] 163s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 163s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libegl-mesa0 s390x 24.3.4-3ubuntu1 [126 kB] 163s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libepoxy0 s390x 1.5.10-2 [222 kB] 163s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 163s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1-mesa-dri s390x 24.3.4-3ubuntu1 [35.3 kB] 163s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-glx0 s390x 1.17.0-2 [26.0 kB] 163s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libxxf86vm1 s390x 1:1.1.4-1build4 [9630 B] 163s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libglx-mesa0 s390x 24.3.4-3ubuntu1 [162 kB] 163s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libgmpxx4ldbl s390x 2:6.3.0+dfsg-2ubuntu7 [10.1 kB] 163s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libgmp-dev s390x 2:6.3.0+dfsg-2ubuntu7 [424 kB] 163s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 163s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 163s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 163s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 163s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 163s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 163s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 163s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 163s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 163s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libxcomposite1 s390x 1:0.4.6-1 [6588 B] 163s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 163s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libxcursor1 s390x 1:1.2.3-1 [23.4 kB] 163s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libxdamage1 s390x 1:1.1.6-1build1 [6156 B] 163s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libxinerama1 s390x 2:1.1.4-3build1 [6476 B] 163s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x libxrandr2 s390x 2:1.5.4-1 [20.8 kB] 163s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-common all 3.24.48-3ubuntu1 [1424 kB] 163s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x libgtk-3-0t64 s390x 3.24.48-3ubuntu1 [2949 kB] 163s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 164s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 164s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom-common all 2.14.0-1 [103 kB] 164s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x libwacom9 s390x 2.14.0-1 [27.1 kB] 164s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libinput-bin s390x 1.27.1-1 [23.3 kB] 164s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libmtdev1t64 s390x 1.1.7-1 [15.6 kB] 164s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libinput10 s390x 1.27.1-1 [139 kB] 164s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x libmd4c0 s390x 0.5.2-2 [47.7 kB] 164s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x libmps3t64 s390x 3.2.1-10.1build4 [188 kB] 164s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x libmps-dev s390x 3.2.1-10.1build4 [238 kB] 164s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x libmps-fortran0t64 s390x 3.2.1-10.1build4 [5120 B] 164s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x libmps-fortran-dev s390x 3.2.1-10.1build4 [3798 B] 164s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 164s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5core5t64 s390x 5.15.15+dfsg-1ubuntu2 [2243 kB] 164s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5dbus5t64 s390x 5.15.15+dfsg-1ubuntu2 [240 kB] 164s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x libglvnd0 s390x 1.7.0-1build1 [110 kB] 164s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x libegl1 s390x 1.7.0-1build1 [31.8 kB] 164s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x libglx0 s390x 1.7.0-1build1 [32.2 kB] 164s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libgl1 s390x 1.7.0-1build1 [142 kB] 164s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5network5t64 s390x 5.15.15+dfsg-1ubuntu2 [788 kB] 164s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 164s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-icccm4 s390x 0.4.2-1 [11.4 kB] 164s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-util1 s390x 0.4.1-1 [10.7 kB] 164s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-image0 s390x 0.4.0-2build1 [12.0 kB] 164s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-keysyms1 s390x 0.4.1-1 [8908 B] 164s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render-util0 s390x 0.3.10-1 [10.3 kB] 164s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shape0 s390x 1.17.0-2 [6202 B] 164s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinerama0 s390x 1.17.0-2 [5430 B] 164s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xinput0 s390x 1.17.0-2 [35.8 kB] 164s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-xkb1 s390x 1.17.0-2 [34.5 kB] 164s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x libxkbcommon-x11-0 s390x 1.7.0-2 [14.8 kB] 164s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5gui5t64 s390x 5.15.15+dfsg-1ubuntu2 [4187 kB] 164s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x libqt5widgets5t64 s390x 5.15.15+dfsg-1ubuntu2 [2718 kB] 165s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x mandelbrot-solver s390x 3.2.1-10.1build4 [11.2 kB] 165s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x mpsolve s390x 3.2.1-10.1build4 [18.5 kB] 165s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mpsolve all 3.2.1-10.1build4 [5566 B] 165s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x xmpsolve s390x 3.2.1-10.1build4 [89.9 kB] 165s Fetched 81.2 MB in 4s (19.3 MB/s) 165s Selecting previously unselected package libgdk-pixbuf2.0-common. 165s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55869 files and directories currently installed.) 165s Preparing to unpack .../000-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 165s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 165s Selecting previously unselected package libjpeg-turbo8:s390x. 165s Preparing to unpack .../001-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 165s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 165s Selecting previously unselected package libjpeg8:s390x. 165s Preparing to unpack .../002-libjpeg8_8c-2ubuntu11_s390x.deb ... 165s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 165s Selecting previously unselected package libdeflate0:s390x. 165s Preparing to unpack .../003-libdeflate0_1.23-1_s390x.deb ... 165s Unpacking libdeflate0:s390x (1.23-1) ... 165s Selecting previously unselected package libjbig0:s390x. 165s Preparing to unpack .../004-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 165s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 165s Selecting previously unselected package libsharpyuv0:s390x. 165s Preparing to unpack .../005-libsharpyuv0_1.5.0-0.1_s390x.deb ... 165s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 165s Selecting previously unselected package libwebp7:s390x. 165s Preparing to unpack .../006-libwebp7_1.5.0-0.1_s390x.deb ... 165s Unpacking libwebp7:s390x (1.5.0-0.1) ... 165s Selecting previously unselected package libtiff6:s390x. 165s Preparing to unpack .../007-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 165s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 165s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 165s Preparing to unpack .../008-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 165s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 165s Selecting previously unselected package gtk-update-icon-cache. 165s Preparing to unpack .../009-gtk-update-icon-cache_4.17.4+ds-4_s390x.deb ... 165s No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed. 165s No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed. 165s Unpacking gtk-update-icon-cache (4.17.4+ds-4) ... 165s Selecting previously unselected package hicolor-icon-theme. 165s Preparing to unpack .../010-hicolor-icon-theme_0.18-2_all.deb ... 165s Unpacking hicolor-icon-theme (0.18-2) ... 165s Selecting previously unselected package adwaita-icon-theme. 165s Preparing to unpack .../011-adwaita-icon-theme_48~beta-3_all.deb ... 165s Unpacking adwaita-icon-theme (48~beta-3) ... 165s Selecting previously unselected package at-spi2-common. 165s Preparing to unpack .../012-at-spi2-common_2.55.2-1_all.deb ... 165s Unpacking at-spi2-common (2.55.2-1) ... 165s Selecting previously unselected package libisl23:s390x. 165s Preparing to unpack .../013-libisl23_0.27-1_s390x.deb ... 165s Unpacking libisl23:s390x (0.27-1) ... 165s Selecting previously unselected package libmpc3:s390x. 165s Preparing to unpack .../014-libmpc3_1.3.1-1build2_s390x.deb ... 165s Unpacking libmpc3:s390x (1.3.1-1build2) ... 165s Selecting previously unselected package cpp-14-s390x-linux-gnu. 165s Preparing to unpack .../015-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 165s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package cpp-14. 166s Preparing to unpack .../016-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 166s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package cpp-s390x-linux-gnu. 166s Preparing to unpack .../017-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 166s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 166s Selecting previously unselected package cpp. 166s Preparing to unpack .../018-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 166s Unpacking cpp (4:14.2.0-1ubuntu1) ... 166s Selecting previously unselected package libcc1-0:s390x. 166s Preparing to unpack .../019-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 166s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package libgomp1:s390x. 166s Preparing to unpack .../020-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 166s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package libitm1:s390x. 166s Preparing to unpack .../021-libitm1_14.2.0-17ubuntu1_s390x.deb ... 166s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package libasan8:s390x. 166s Preparing to unpack .../022-libasan8_14.2.0-17ubuntu1_s390x.deb ... 166s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package libubsan1:s390x. 166s Preparing to unpack .../023-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 166s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package libgcc-14-dev:s390x. 166s Preparing to unpack .../024-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 166s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package gcc-14-s390x-linux-gnu. 166s Preparing to unpack .../025-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 166s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package gcc-14. 166s Preparing to unpack .../026-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 166s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package gcc-s390x-linux-gnu. 166s Preparing to unpack .../027-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 166s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 166s Selecting previously unselected package gcc. 166s Preparing to unpack .../028-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 166s Unpacking gcc (4:14.2.0-1ubuntu1) ... 166s Selecting previously unselected package libstdc++-14-dev:s390x. 166s Preparing to unpack .../029-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 166s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package g++-14-s390x-linux-gnu. 166s Preparing to unpack .../030-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 166s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package g++-14. 166s Preparing to unpack .../031-g++-14_14.2.0-17ubuntu1_s390x.deb ... 166s Unpacking g++-14 (14.2.0-17ubuntu1) ... 166s Selecting previously unselected package g++-s390x-linux-gnu. 166s Preparing to unpack .../032-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 166s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 166s Selecting previously unselected package g++. 166s Preparing to unpack .../033-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 166s Unpacking g++ (4:14.2.0-1ubuntu1) ... 166s Selecting previously unselected package build-essential. 166s Preparing to unpack .../034-build-essential_12.10ubuntu1_s390x.deb ... 166s Unpacking build-essential (12.10ubuntu1) ... 166s Selecting previously unselected package libdconf1:s390x. 166s Preparing to unpack .../035-libdconf1_0.40.0-5_s390x.deb ... 166s Unpacking libdconf1:s390x (0.40.0-5) ... 166s Selecting previously unselected package dconf-service. 166s Preparing to unpack .../036-dconf-service_0.40.0-5_s390x.deb ... 166s Unpacking dconf-service (0.40.0-5) ... 166s Selecting previously unselected package dconf-gsettings-backend:s390x. 166s Preparing to unpack .../037-dconf-gsettings-backend_0.40.0-5_s390x.deb ... 166s Unpacking dconf-gsettings-backend:s390x (0.40.0-5) ... 166s Selecting previously unselected package libfreetype6:s390x. 166s Preparing to unpack .../038-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 166s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 166s Selecting previously unselected package fonts-dejavu-mono. 166s Preparing to unpack .../039-fonts-dejavu-mono_2.37-8_all.deb ... 166s Unpacking fonts-dejavu-mono (2.37-8) ... 166s Selecting previously unselected package fonts-dejavu-core. 166s Preparing to unpack .../040-fonts-dejavu-core_2.37-8_all.deb ... 166s Unpacking fonts-dejavu-core (2.37-8) ... 166s Selecting previously unselected package fontconfig-config. 166s Preparing to unpack .../041-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 167s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 167s Selecting previously unselected package libfontconfig1:s390x. 167s Preparing to unpack .../042-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 167s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 167s Selecting previously unselected package fontconfig. 167s Preparing to unpack .../043-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 167s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 167s Selecting previously unselected package libatk1.0-0t64:s390x. 167s Preparing to unpack .../044-libatk1.0-0t64_2.55.2-1_s390x.deb ... 167s Unpacking libatk1.0-0t64:s390x (2.55.2-1) ... 167s Selecting previously unselected package libxi6:s390x. 167s Preparing to unpack .../045-libxi6_2%3a1.8.2-1_s390x.deb ... 167s Unpacking libxi6:s390x (2:1.8.2-1) ... 167s Selecting previously unselected package libatspi2.0-0t64:s390x. 167s Preparing to unpack .../046-libatspi2.0-0t64_2.55.2-1_s390x.deb ... 167s Unpacking libatspi2.0-0t64:s390x (2.55.2-1) ... 167s Selecting previously unselected package libatk-bridge2.0-0t64:s390x. 167s Preparing to unpack .../047-libatk-bridge2.0-0t64_2.55.2-1_s390x.deb ... 167s Unpacking libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 167s Selecting previously unselected package libavahi-common-data:s390x. 167s Preparing to unpack .../048-libavahi-common-data_0.8-14ubuntu1_s390x.deb ... 167s Unpacking libavahi-common-data:s390x (0.8-14ubuntu1) ... 167s Selecting previously unselected package libavahi-common3:s390x. 167s Preparing to unpack .../049-libavahi-common3_0.8-14ubuntu1_s390x.deb ... 167s Unpacking libavahi-common3:s390x (0.8-14ubuntu1) ... 167s Selecting previously unselected package libavahi-client3:s390x. 167s Preparing to unpack .../050-libavahi-client3_0.8-14ubuntu1_s390x.deb ... 167s Unpacking libavahi-client3:s390x (0.8-14ubuntu1) ... 167s Selecting previously unselected package libpixman-1-0:s390x. 167s Preparing to unpack .../051-libpixman-1-0_0.44.0-3_s390x.deb ... 167s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 167s Selecting previously unselected package libxcb-render0:s390x. 167s Preparing to unpack .../052-libxcb-render0_1.17.0-2_s390x.deb ... 167s Unpacking libxcb-render0:s390x (1.17.0-2) ... 167s Selecting previously unselected package libxcb-shm0:s390x. 167s Preparing to unpack .../053-libxcb-shm0_1.17.0-2_s390x.deb ... 167s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 167s Selecting previously unselected package libxrender1:s390x. 167s Preparing to unpack .../054-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 167s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 167s Selecting previously unselected package libcairo2:s390x. 167s Preparing to unpack .../055-libcairo2_1.18.2-2_s390x.deb ... 167s Unpacking libcairo2:s390x (1.18.2-2) ... 167s Selecting previously unselected package libcairo-gobject2:s390x. 167s Preparing to unpack .../056-libcairo-gobject2_1.18.2-2_s390x.deb ... 167s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 167s Selecting previously unselected package liblcms2-2:s390x. 167s Preparing to unpack .../057-liblcms2-2_2.16-2_s390x.deb ... 167s Unpacking liblcms2-2:s390x (2.16-2) ... 167s Selecting previously unselected package libcolord2:s390x. 167s Preparing to unpack .../058-libcolord2_1.4.7-1build2_s390x.deb ... 167s Unpacking libcolord2:s390x (1.4.7-1build2) ... 167s Selecting previously unselected package libcups2t64:s390x. 167s Preparing to unpack .../059-libcups2t64_2.4.11-0ubuntu2_s390x.deb ... 167s Unpacking libcups2t64:s390x (2.4.11-0ubuntu2) ... 167s Selecting previously unselected package libdatrie1:s390x. 167s Preparing to unpack .../060-libdatrie1_0.2.13-3build1_s390x.deb ... 167s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 167s Selecting previously unselected package libdouble-conversion3:s390x. 167s Preparing to unpack .../061-libdouble-conversion3_3.3.0-1build1_s390x.deb ... 167s Unpacking libdouble-conversion3:s390x (3.3.0-1build1) ... 167s Selecting previously unselected package libdrm-radeon1:s390x. 167s Preparing to unpack .../062-libdrm-radeon1_2.4.123-1_s390x.deb ... 167s Unpacking libdrm-radeon1:s390x (2.4.123-1) ... 167s Selecting previously unselected package libwayland-server0:s390x. 167s Preparing to unpack .../063-libwayland-server0_1.23.1-1_s390x.deb ... 167s Unpacking libwayland-server0:s390x (1.23.1-1) ... 167s Selecting previously unselected package libglapi-mesa:s390x. 167s Preparing to unpack .../064-libglapi-mesa_24.3.4-3ubuntu1_s390x.deb ... 167s Unpacking libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 167s Selecting previously unselected package libx11-xcb1:s390x. 167s Preparing to unpack .../065-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 167s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 167s Selecting previously unselected package libxcb-dri3-0:s390x. 167s Preparing to unpack .../066-libxcb-dri3-0_1.17.0-2_s390x.deb ... 167s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 167s Selecting previously unselected package libxcb-present0:s390x. 167s Preparing to unpack .../067-libxcb-present0_1.17.0-2_s390x.deb ... 167s Unpacking libxcb-present0:s390x (1.17.0-2) ... 167s Selecting previously unselected package libxcb-randr0:s390x. 167s Preparing to unpack .../068-libxcb-randr0_1.17.0-2_s390x.deb ... 167s Unpacking libxcb-randr0:s390x (1.17.0-2) ... 167s Selecting previously unselected package libxcb-sync1:s390x. 167s Preparing to unpack .../069-libxcb-sync1_1.17.0-2_s390x.deb ... 167s Unpacking libxcb-sync1:s390x (1.17.0-2) ... 167s Selecting previously unselected package libxcb-xfixes0:s390x. 167s Preparing to unpack .../070-libxcb-xfixes0_1.17.0-2_s390x.deb ... 167s Unpacking libxcb-xfixes0:s390x (1.17.0-2) ... 167s Selecting previously unselected package libxshmfence1:s390x. 167s Preparing to unpack .../071-libxshmfence1_1.3-1build5_s390x.deb ... 167s Unpacking libxshmfence1:s390x (1.3-1build5) ... 167s Selecting previously unselected package mesa-libgallium:s390x. 167s Preparing to unpack .../072-mesa-libgallium_24.3.4-3ubuntu1_s390x.deb ... 167s Unpacking mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 167s Selecting previously unselected package libgbm1:s390x. 167s Preparing to unpack .../073-libgbm1_24.3.4-3ubuntu1_s390x.deb ... 167s Unpacking libgbm1:s390x (24.3.4-3ubuntu1) ... 167s Selecting previously unselected package libwayland-client0:s390x. 167s Preparing to unpack .../074-libwayland-client0_1.23.1-1_s390x.deb ... 167s Unpacking libwayland-client0:s390x (1.23.1-1) ... 167s Selecting previously unselected package libegl-mesa0:s390x. 167s Preparing to unpack .../075-libegl-mesa0_24.3.4-3ubuntu1_s390x.deb ... 167s Unpacking libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 167s Selecting previously unselected package libepoxy0:s390x. 167s Preparing to unpack .../076-libepoxy0_1.5.10-2_s390x.deb ... 167s Unpacking libepoxy0:s390x (1.5.10-2) ... 167s Selecting previously unselected package libvulkan1:s390x. 167s Preparing to unpack .../077-libvulkan1_1.4.304.0-1_s390x.deb ... 167s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 167s Selecting previously unselected package libgl1-mesa-dri:s390x. 167s Preparing to unpack .../078-libgl1-mesa-dri_24.3.4-3ubuntu1_s390x.deb ... 167s Unpacking libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 167s Selecting previously unselected package libxcb-glx0:s390x. 167s Preparing to unpack .../079-libxcb-glx0_1.17.0-2_s390x.deb ... 167s Unpacking libxcb-glx0:s390x (1.17.0-2) ... 167s Selecting previously unselected package libxxf86vm1:s390x. 167s Preparing to unpack .../080-libxxf86vm1_1%3a1.1.4-1build4_s390x.deb ... 167s Unpacking libxxf86vm1:s390x (1:1.1.4-1build4) ... 167s Selecting previously unselected package libglx-mesa0:s390x. 167s Preparing to unpack .../081-libglx-mesa0_24.3.4-3ubuntu1_s390x.deb ... 167s Unpacking libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 167s Selecting previously unselected package libgmpxx4ldbl:s390x. 167s Preparing to unpack .../082-libgmpxx4ldbl_2%3a6.3.0+dfsg-2ubuntu7_s390x.deb ... 167s Unpacking libgmpxx4ldbl:s390x (2:6.3.0+dfsg-2ubuntu7) ... 167s Selecting previously unselected package libgmp-dev:s390x. 167s Preparing to unpack .../083-libgmp-dev_2%3a6.3.0+dfsg-2ubuntu7_s390x.deb ... 167s Unpacking libgmp-dev:s390x (2:6.3.0+dfsg-2ubuntu7) ... 167s Selecting previously unselected package libgraphite2-3:s390x. 167s Preparing to unpack .../084-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 167s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 167s Selecting previously unselected package libharfbuzz0b:s390x. 167s Preparing to unpack .../085-libharfbuzz0b_10.2.0-1_s390x.deb ... 167s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 167s Selecting previously unselected package libthai-data. 167s Preparing to unpack .../086-libthai-data_0.1.29-2build1_all.deb ... 167s Unpacking libthai-data (0.1.29-2build1) ... 167s Selecting previously unselected package libthai0:s390x. 167s Preparing to unpack .../087-libthai0_0.1.29-2build1_s390x.deb ... 167s Unpacking libthai0:s390x (0.1.29-2build1) ... 167s Selecting previously unselected package libpango-1.0-0:s390x. 167s Preparing to unpack .../088-libpango-1.0-0_1.56.1-1_s390x.deb ... 167s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 167s Selecting previously unselected package libpangoft2-1.0-0:s390x. 167s Preparing to unpack .../089-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 167s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 167s Selecting previously unselected package libpangocairo-1.0-0:s390x. 167s Preparing to unpack .../090-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 167s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 167s Selecting previously unselected package libwayland-cursor0:s390x. 167s Preparing to unpack .../091-libwayland-cursor0_1.23.1-1_s390x.deb ... 167s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 167s Selecting previously unselected package libwayland-egl1:s390x. 167s Preparing to unpack .../092-libwayland-egl1_1.23.1-1_s390x.deb ... 167s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 167s Selecting previously unselected package libxcomposite1:s390x. 167s Preparing to unpack .../093-libxcomposite1_1%3a0.4.6-1_s390x.deb ... 167s Unpacking libxcomposite1:s390x (1:0.4.6-1) ... 167s Selecting previously unselected package libxfixes3:s390x. 167s Preparing to unpack .../094-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 167s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 167s Selecting previously unselected package libxcursor1:s390x. 167s Preparing to unpack .../095-libxcursor1_1%3a1.2.3-1_s390x.deb ... 167s Unpacking libxcursor1:s390x (1:1.2.3-1) ... 167s Selecting previously unselected package libxdamage1:s390x. 167s Preparing to unpack .../096-libxdamage1_1%3a1.1.6-1build1_s390x.deb ... 167s Unpacking libxdamage1:s390x (1:1.1.6-1build1) ... 167s Selecting previously unselected package libxinerama1:s390x. 167s Preparing to unpack .../097-libxinerama1_2%3a1.1.4-3build1_s390x.deb ... 167s Unpacking libxinerama1:s390x (2:1.1.4-3build1) ... 167s Selecting previously unselected package libxrandr2:s390x. 167s Preparing to unpack .../098-libxrandr2_2%3a1.5.4-1_s390x.deb ... 167s Unpacking libxrandr2:s390x (2:1.5.4-1) ... 167s Selecting previously unselected package libgtk-3-common. 167s Preparing to unpack .../099-libgtk-3-common_3.24.48-3ubuntu1_all.deb ... 167s Unpacking libgtk-3-common (3.24.48-3ubuntu1) ... 167s Selecting previously unselected package libgtk-3-0t64:s390x. 167s Preparing to unpack .../100-libgtk-3-0t64_3.24.48-3ubuntu1_s390x.deb ... 167s Unpacking libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 167s Selecting previously unselected package x11-common. 168s Preparing to unpack .../101-x11-common_1%3a7.7+23ubuntu3_all.deb ... 168s Unpacking x11-common (1:7.7+23ubuntu3) ... 168s Selecting previously unselected package libice6:s390x. 168s Preparing to unpack .../102-libice6_2%3a1.1.1-1_s390x.deb ... 168s Unpacking libice6:s390x (2:1.1.1-1) ... 168s Selecting previously unselected package libwacom-common. 168s Preparing to unpack .../103-libwacom-common_2.14.0-1_all.deb ... 168s Unpacking libwacom-common (2.14.0-1) ... 168s Selecting previously unselected package libwacom9:s390x. 168s Preparing to unpack .../104-libwacom9_2.14.0-1_s390x.deb ... 168s Unpacking libwacom9:s390x (2.14.0-1) ... 168s Selecting previously unselected package libinput-bin. 168s Preparing to unpack .../105-libinput-bin_1.27.1-1_s390x.deb ... 168s Unpacking libinput-bin (1.27.1-1) ... 168s Selecting previously unselected package libmtdev1t64:s390x. 168s Preparing to unpack .../106-libmtdev1t64_1.1.7-1_s390x.deb ... 168s Unpacking libmtdev1t64:s390x (1.1.7-1) ... 168s Selecting previously unselected package libinput10:s390x. 168s Preparing to unpack .../107-libinput10_1.27.1-1_s390x.deb ... 168s Unpacking libinput10:s390x (1.27.1-1) ... 168s Selecting previously unselected package libmd4c0:s390x. 168s Preparing to unpack .../108-libmd4c0_0.5.2-2_s390x.deb ... 168s Unpacking libmd4c0:s390x (0.5.2-2) ... 168s Selecting previously unselected package libmps3t64:s390x. 168s Preparing to unpack .../109-libmps3t64_3.2.1-10.1build4_s390x.deb ... 168s Unpacking libmps3t64:s390x (3.2.1-10.1build4) ... 168s Selecting previously unselected package libmps-dev:s390x. 168s Preparing to unpack .../110-libmps-dev_3.2.1-10.1build4_s390x.deb ... 168s Unpacking libmps-dev:s390x (3.2.1-10.1build4) ... 168s Selecting previously unselected package libmps-fortran0t64:s390x. 168s Preparing to unpack .../111-libmps-fortran0t64_3.2.1-10.1build4_s390x.deb ... 168s Unpacking libmps-fortran0t64:s390x (3.2.1-10.1build4) ... 168s Selecting previously unselected package libmps-fortran-dev:s390x. 168s Preparing to unpack .../112-libmps-fortran-dev_3.2.1-10.1build4_s390x.deb ... 168s Unpacking libmps-fortran-dev:s390x (3.2.1-10.1build4) ... 168s Selecting previously unselected package libpcre2-16-0:s390x. 168s Preparing to unpack .../113-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 168s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 168s Selecting previously unselected package libqt5core5t64:s390x. 168s Preparing to unpack .../114-libqt5core5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 168s Unpacking libqt5core5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 168s Selecting previously unselected package libqt5dbus5t64:s390x. 168s Preparing to unpack .../115-libqt5dbus5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 168s Unpacking libqt5dbus5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 168s Selecting previously unselected package libglvnd0:s390x. 168s Preparing to unpack .../116-libglvnd0_1.7.0-1build1_s390x.deb ... 168s Unpacking libglvnd0:s390x (1.7.0-1build1) ... 168s Selecting previously unselected package libegl1:s390x. 168s Preparing to unpack .../117-libegl1_1.7.0-1build1_s390x.deb ... 168s Unpacking libegl1:s390x (1.7.0-1build1) ... 168s Selecting previously unselected package libglx0:s390x. 168s Preparing to unpack .../118-libglx0_1.7.0-1build1_s390x.deb ... 168s Unpacking libglx0:s390x (1.7.0-1build1) ... 168s Selecting previously unselected package libgl1:s390x. 168s Preparing to unpack .../119-libgl1_1.7.0-1build1_s390x.deb ... 168s Unpacking libgl1:s390x (1.7.0-1build1) ... 168s Selecting previously unselected package libqt5network5t64:s390x. 168s Preparing to unpack .../120-libqt5network5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 168s Unpacking libqt5network5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 168s Selecting previously unselected package libsm6:s390x. 168s Preparing to unpack .../121-libsm6_2%3a1.2.4-1_s390x.deb ... 168s Unpacking libsm6:s390x (2:1.2.4-1) ... 168s Selecting previously unselected package libxcb-icccm4:s390x. 168s Preparing to unpack .../122-libxcb-icccm4_0.4.2-1_s390x.deb ... 168s Unpacking libxcb-icccm4:s390x (0.4.2-1) ... 168s Selecting previously unselected package libxcb-util1:s390x. 168s Preparing to unpack .../123-libxcb-util1_0.4.1-1_s390x.deb ... 168s Unpacking libxcb-util1:s390x (0.4.1-1) ... 168s Selecting previously unselected package libxcb-image0:s390x. 168s Preparing to unpack .../124-libxcb-image0_0.4.0-2build1_s390x.deb ... 168s Unpacking libxcb-image0:s390x (0.4.0-2build1) ... 168s Selecting previously unselected package libxcb-keysyms1:s390x. 168s Preparing to unpack .../125-libxcb-keysyms1_0.4.1-1_s390x.deb ... 168s Unpacking libxcb-keysyms1:s390x (0.4.1-1) ... 168s Selecting previously unselected package libxcb-render-util0:s390x. 168s Preparing to unpack .../126-libxcb-render-util0_0.3.10-1_s390x.deb ... 168s Unpacking libxcb-render-util0:s390x (0.3.10-1) ... 168s Selecting previously unselected package libxcb-shape0:s390x. 168s Preparing to unpack .../127-libxcb-shape0_1.17.0-2_s390x.deb ... 168s Unpacking libxcb-shape0:s390x (1.17.0-2) ... 168s Selecting previously unselected package libxcb-xinerama0:s390x. 168s Preparing to unpack .../128-libxcb-xinerama0_1.17.0-2_s390x.deb ... 168s Unpacking libxcb-xinerama0:s390x (1.17.0-2) ... 168s Selecting previously unselected package libxcb-xinput0:s390x. 168s Preparing to unpack .../129-libxcb-xinput0_1.17.0-2_s390x.deb ... 168s Unpacking libxcb-xinput0:s390x (1.17.0-2) ... 168s Selecting previously unselected package libxcb-xkb1:s390x. 168s Preparing to unpack .../130-libxcb-xkb1_1.17.0-2_s390x.deb ... 168s Unpacking libxcb-xkb1:s390x (1.17.0-2) ... 168s Selecting previously unselected package libxkbcommon-x11-0:s390x. 168s Preparing to unpack .../131-libxkbcommon-x11-0_1.7.0-2_s390x.deb ... 168s Unpacking libxkbcommon-x11-0:s390x (1.7.0-2) ... 168s Selecting previously unselected package libqt5gui5t64:s390x. 168s Preparing to unpack .../132-libqt5gui5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 168s Unpacking libqt5gui5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 168s Selecting previously unselected package libqt5widgets5t64:s390x. 168s Preparing to unpack .../133-libqt5widgets5t64_5.15.15+dfsg-1ubuntu2_s390x.deb ... 168s Unpacking libqt5widgets5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 168s Selecting previously unselected package mandelbrot-solver. 168s Preparing to unpack .../134-mandelbrot-solver_3.2.1-10.1build4_s390x.deb ... 168s Unpacking mandelbrot-solver (3.2.1-10.1build4) ... 168s Selecting previously unselected package mpsolve. 168s Preparing to unpack .../135-mpsolve_3.2.1-10.1build4_s390x.deb ... 168s Unpacking mpsolve (3.2.1-10.1build4) ... 168s Selecting previously unselected package python3-mpsolve. 168s Preparing to unpack .../136-python3-mpsolve_3.2.1-10.1build4_all.deb ... 168s Unpacking python3-mpsolve (3.2.1-10.1build4) ... 168s Selecting previously unselected package xmpsolve. 168s Preparing to unpack .../137-xmpsolve_3.2.1-10.1build4_s390x.deb ... 168s Unpacking xmpsolve (3.2.1-10.1build4) ... 168s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 168s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 168s Setting up liblcms2-2:s390x (2.16-2) ... 168s Setting up libpixman-1-0:s390x (0.44.0-3) ... 168s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 168s Setting up libwayland-server0:s390x (1.23.1-1) ... 168s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 168s Setting up libdouble-conversion3:s390x (3.3.0-1build1) ... 168s Setting up libxdamage1:s390x (1:1.1.6-1build1) ... 168s Setting up libxcb-xfixes0:s390x (1.17.0-2) ... 168s Setting up hicolor-icon-theme (0.18-2) ... 168s Setting up libxi6:s390x (2:1.8.2-1) ... 168s Setting up libxcb-xinput0:s390x (1.17.0-2) ... 168s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 168s Setting up libdatrie1:s390x (0.2.13-3build1) ... 168s Setting up libxcb-render0:s390x (1.17.0-2) ... 168s Setting up libdrm-radeon1:s390x (2.4.123-1) ... 168s Setting up libglvnd0:s390x (1.7.0-1build1) ... 168s Setting up libxcb-glx0:s390x (1.17.0-2) ... 168s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 168s Setting up libxcb-keysyms1:s390x (0.4.1-1) ... 168s Setting up libxcb-shape0:s390x (1.17.0-2) ... 168s Setting up x11-common (1:7.7+23ubuntu3) ... 168s Setting up libdeflate0:s390x (1.23-1) ... 168s Setting up libxcb-render-util0:s390x (0.3.10-1) ... 168s Setting up libxcb-shm0:s390x (1.17.0-2) ... 168s Setting up libxcb-icccm4:s390x (0.4.2-1) ... 168s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 168s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 168s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 168s Setting up libcolord2:s390x (1.4.7-1build2) ... 168s Setting up libxcb-util1:s390x (0.4.1-1) ... 168s Setting up libxxf86vm1:s390x (1:1.1.4-1build4) ... 168s Setting up libxcb-xkb1:s390x (1.17.0-2) ... 168s Setting up libxcb-image0:s390x (0.4.0-2build1) ... 168s Setting up libxcb-present0:s390x (1.17.0-2) ... 168s Setting up libdconf1:s390x (0.40.0-5) ... 168s Setting up libqt5core5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 168s Setting up libxcb-xinerama0:s390x (1.17.0-2) ... 168s Setting up libgmpxx4ldbl:s390x (2:6.3.0+dfsg-2ubuntu7) ... 168s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 168s Setting up libepoxy0:s390x (1.5.10-2) ... 168s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 168s Setting up libxcb-sync1:s390x (1.17.0-2) ... 168s Setting up libavahi-common-data:s390x (0.8-14ubuntu1) ... 168s Setting up libatspi2.0-0t64:s390x (2.55.2-1) ... 168s Setting up libxinerama1:s390x (2:1.1.4-3build1) ... 168s Setting up libxkbcommon-x11-0:s390x (1.7.0-2) ... 168s Setting up fonts-dejavu-mono (2.37-8) ... 169s Setting up libmpc3:s390x (1.3.1-1build2) ... 169s Setting up libxrandr2:s390x (2:1.5.4-1) ... 169s Setting up fonts-dejavu-core (2.37-8) ... 169s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 169s Setting up libglapi-mesa:s390x (24.3.4-3ubuntu1) ... 169s Setting up libvulkan1:s390x (1.4.304.0-1) ... 169s Setting up libwebp7:s390x (1.5.0-0.1) ... 169s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 169s Setting up libmtdev1t64:s390x (1.1.7-1) ... 169s Setting up libxshmfence1:s390x (1.3-1build5) ... 169s Setting up at-spi2-common (2.55.2-1) ... 169s Setting up libxcb-randr0:s390x (1.17.0-2) ... 169s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 169s Setting up libmd4c0:s390x (0.5.2-2) ... 169s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 169s Setting up libthai-data (0.1.29-2build1) ... 169s Setting up libwayland-egl1:s390x (1.23.1-1) ... 169s Setting up libisl23:s390x (0.27-1) ... 169s Setting up libxcomposite1:s390x (1:0.4.6-1) ... 169s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 169s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 169s Setting up libwacom-common (2.14.0-1) ... 169s Setting up libwayland-client0:s390x (1.23.1-1) ... 169s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 169s Setting up libice6:s390x (2:1.1.1-1) ... 169s Setting up mesa-libgallium:s390x (24.3.4-3ubuntu1) ... 169s Setting up libqt5dbus5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 169s Setting up libgmp-dev:s390x (2:6.3.0+dfsg-2ubuntu7) ... 169s Setting up libatk1.0-0t64:s390x (2.55.2-1) ... 169s Setting up libgbm1:s390x (24.3.4-3ubuntu1) ... 169s Setting up libwacom9:s390x (2.14.0-1) ... 169s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 169s Setting up libxcursor1:s390x (1:1.2.3-1) ... 169s Setting up libgl1-mesa-dri:s390x (24.3.4-3ubuntu1) ... 169s Setting up libqt5network5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 169s Setting up libavahi-common3:s390x (0.8-14ubuntu1) ... 169s Setting up dconf-service (0.40.0-5) ... 169s Setting up libmps3t64:s390x (3.2.1-10.1build4) ... 169s Setting up libinput-bin (1.27.1-1) ... 169s Setting up libthai0:s390x (0.1.29-2build1) ... 169s Setting up libegl-mesa0:s390x (24.3.4-3ubuntu1) ... 169s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 169s Setting up cpp-14 (14.2.0-17ubuntu1) ... 169s Setting up libmps-dev:s390x (3.2.1-10.1build4) ... 169s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 169s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 169s Setting up libegl1:s390x (1.7.0-1build1) ... 169s Setting up python3-mpsolve (3.2.1-10.1build4) ... 169s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 169s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 169s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 169s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 169s Setting up libsm6:s390x (2:1.2.4-1) ... 169s Setting up libavahi-client3:s390x (0.8-14ubuntu1) ... 169s Setting up mandelbrot-solver (3.2.1-10.1build4) ... 169s Setting up libmps-fortran0t64:s390x (3.2.1-10.1build4) ... 169s Setting up libatk-bridge2.0-0t64:s390x (2.55.2-1) ... 169s Setting up libinput10:s390x (1.27.1-1) ... 169s Setting up gtk-update-icon-cache (4.17.4+ds-4) ... 169s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 171s Regenerating fonts cache... done. 171s Setting up libglx-mesa0:s390x (24.3.4-3ubuntu1) ... 171s Setting up libglx0:s390x (1.7.0-1build1) ... 171s Setting up dconf-gsettings-backend:s390x (0.40.0-5) ... 171s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 171s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 171s Setting up libcairo2:s390x (1.18.2-2) ... 171s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 171s Setting up libgl1:s390x (1.7.0-1build1) ... 171s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 171s Setting up adwaita-icon-theme (48~beta-3) ... 171s update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode 171s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 171s Setting up libmps-fortran-dev:s390x (3.2.1-10.1build4) ... 171s Setting up cpp (4:14.2.0-1ubuntu1) ... 171s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 171s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 171s Setting up libcups2t64:s390x (2.4.11-0ubuntu2) ... 171s Setting up libgtk-3-common (3.24.48-3ubuntu1) ... 171s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 171s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 171s Setting up gcc-14 (14.2.0-17ubuntu1) ... 171s Setting up libqt5gui5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 171s Setting up g++-14 (14.2.0-17ubuntu1) ... 171s Setting up libqt5widgets5t64:s390x (5.15.15+dfsg-1ubuntu2) ... 171s Setting up gcc (4:14.2.0-1ubuntu1) ... 171s Setting up xmpsolve (3.2.1-10.1build4) ... 171s Setting up g++ (4:14.2.0-1ubuntu1) ... 171s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 171s Setting up build-essential (12.10ubuntu1) ... 171s Processing triggers for udev (257.2-3ubuntu1) ... 171s Processing triggers for libc-bin (2.41-1ubuntu1) ... 171s Processing triggers for man-db (2.13.0-1) ... 172s Processing triggers for libglib2.0-0t64:s390x (2.83.3-2) ... 172s Setting up libgtk-3-0t64:s390x (3.24.48-3ubuntu1) ... 172s Processing triggers for shared-mime-info (2.4-5) ... 172s Warning: program compiled against libxml 212 using older 209 173s Setting up mpsolve (3.2.1-10.1build4) ... 173s Processing triggers for libc-bin (2.41-1ubuntu1) ... 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'mpsolve'], kind short, sout pipe, serr pipe, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libmps3t64'], kind short, sout pipe, serr pipe, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libmps-dev'], kind short, sout pipe, serr pipe, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libmps-fortran0t64'], kind short, sout pipe, serr pipe, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'libmps-fortran-dev'], kind short, sout pipe, serr pipe, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-mpsolve'], kind short, sout pipe, serr pipe, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'xmpsolve'], kind short, sout pipe, serr pipe, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'mandelbrot-solver'], kind short, sout pipe, serr pipe, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.J3Ov6Y/command1-packages.all"], kind short, sout raw, serr pipe, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.J3Ov6Y/command1-packages.all /tmp/autopkgtest-work.3mwvxv96/out/command1-packages.all 175s autopkgtest: DBG: got reply from testbed: ok 175s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.J3Ov6Y/build.p4m/src'], kind short, sout raw, serr raw, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.J3Ov6Y/build.p4m/src already exists 175s autopkgtest [01:03:36]: test command1: gcc examples/C/root_of_unity.c -lm -lgmp -lmps -pthread && mpsolve -p "x^4-6*x^9+6/7*x + 5" 175s autopkgtest [01:03:36]: test command1: [----------------------- 175s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.J3Ov6Y/wrapper.sh --debug --artifacts=/tmp/autopkgtest.J3Ov6Y/command1-artifacts --chdir=/tmp/autopkgtest.J3Ov6Y/build.p4m/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.J3Ov6Y/command1-stderr --stdout=/tmp/autopkgtest.J3Ov6Y/command1-stdout --tmp=/tmp/autopkgtest.J3Ov6Y/autopkgtest_tmp \'--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1\' -- bash -ec \'gcc examples/C/root_of_unity.c -lm -lgmp -lmps -pthread && mpsolve -p "x^4-6*x^9+6/7*x + 5"\''], kind test, sout raw, serr raw, env [] 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.J3Ov6Y/command1-artifacts 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: changing to directory: /tmp/autopkgtest.J3Ov6Y/build.p4m/src 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: setting environment: LANG=C.UTF-8 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LANGUAGE 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_ADDRESS 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_ALL 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_COLLATE 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_CTYPE 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_IDENTIFICATION 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_MEASUREMENT 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_MESSAGES 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_MONETARY 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_NAME 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_NUMERIC 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_PAPER 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_TELEPHONE 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: unsetting environment: LC_TIME 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: pretending to be a login shell 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: will write standard error to /tmp/autopkgtest.J3Ov6Y/command1-stderr 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: will write stdout to /tmp/autopkgtest.J3Ov6Y/command1-stdout 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.J3Ov6Y/autopkgtest_tmp 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: command to run: bash -ec gcc examples/C/root_of_unity.c -lm -lgmp -lmps -pthread && mpsolve -p "x^4-6*x^9+6/7*x + 5" 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: copying /tmp/tmp.WJjlebMKVK/out to stdout and file: /tmp/autopkgtest.J3Ov6Y/command1-stdout 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: copying /tmp/tmp.WJjlebMKVK/err to standard error and file: /tmp/autopkgtest.J3Ov6Y/command1-stdout 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: writing script pid 3241 to /tmp/autopkgtest_script_pid 175s (-0.902167735974254e0, 0.34325703867297e0) 175s (-0.902167735974254e0, -0.34325703867297e0) 175s (-0.51135936061832e0, 0.815501582225565e0) 175s (-0.51135936061832e0, -0.815501582225565e0) 175s (0.16938688629119e0, 0.984056774511485e0) 175s (0.16938688629119e0, -0.984056774511485e0) 175s (0.736007057873303e0, 0.641058473566752e0) 175s (0.736007057873303e0, -0.641058473566752e0) 175s (0.101626630485615e1, 0.e-36) 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: checking for leaked background processes... 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: waiting for tee/cat subprocesses... 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: cleaning up... 175s /tmp/autopkgtest.J3Ov6Y/wrapper.sh: Exit status: 0 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest [01:03:36]: test command1: -----------------------] 175s autopkgtest: DBG: testbed executing test finished with exit status 0 175s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.J3Ov6Y/command1-stdout /tmp/autopkgtest-work.3mwvxv96/out/command1-stdout 176s autopkgtest: DBG: got reply from testbed: ok 176s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.J3Ov6Y/command1-stderr /tmp/autopkgtest-work.3mwvxv96/out/command1-stderr 176s autopkgtest: DBG: got reply from testbed: ok 176s autopkgtest [01:03:37]: test command1: - - - - - - - - - - results - - - - - - - - - - 176s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.J3Ov6Y/command1-artifacts/ /tmp/autopkgtest-work.3mwvxv96/out/artifacts/ 176s command1 PASS 176s autopkgtest: DBG: got reply from testbed: ok 176s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.J3Ov6Y/command1-artifacts', '/tmp/autopkgtest.J3Ov6Y/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 176s autopkgtest: DBG: testbed command exited with code 0 176s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 176s autopkgtest [01:03:37]: @@@@@@@@@@@@@@@@@@@@ summary 176s command1 PASS 176s autopkgtest: DBG: testbed stop 176s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.J3Ov6Y 176s autopkgtest: DBG: sending command to testbed: close 193s autopkgtest: DBG: got reply from testbed: ok 193s autopkgtest: DBG: sending command to testbed: quit 193s nova [W] Using flock in prodstack6-s390x 193s Creating nova instance adt-plucky-s390x-mpsolve-20250216-010041-juju-7f2275-prod-proposed-migration-environment-15-c4d9d8d8-f416-4ca1-82a0-5c4a0e79ef92 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 193s nova [W] Timed out waiting for f48933fe-a397-492d-a578-4e16a460a052 to get deleted.