0s autopkgtest: DBG: testbed init 0s autopkgtest [02:09:39]: starting date and time: 2025-02-16 02:09:39+0000 0s autopkgtest [02:09:39]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [02:09:39]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.k41681sz/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 r-cran-av --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-27.secgroup --name adt-plucky-s390x-r-cran-av-20250216-020939-juju-7f2275-prod-proposed-migration-environment-15-aceb3442-b729-44b6-88fc-fadea8ff2639 --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 100s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.kbiIQP 100s autopkgtest: DBG: sending command to testbed: print-execute-command 100s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.1bqhm6wk/runcmd 100s autopkgtest: DBG: sending command to testbed: capabilities 100s autopkgtest: DBG: got reply from testbed: ok reboot suggested-normal-user=ubuntu revert-full-system isolation-machine revert root-on-testbed 100s autopkgtest: DBG: testbed capabilities: ['reboot', 'suggested-normal-user=ubuntu', 'revert-full-system', 'isolation-machine', 'revert', 'root-on-testbed', 'has_internet'] 100s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.kbiIQP'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.kbiIQP/wrapper.sh 101s autopkgtest: DBG: got reply from testbed: ok 101s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.kbiIQP/wrapper.sh'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest [02:11:20]: testbed dpkg architecture: s390x 101s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest [02:11:20]: testbed apt version: 2.9.28 101s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed has eatmydata 101s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest [02:11:20]: @@@@@@@@@@@@@@@@@@@@ test bed setup 101s 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 [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest [02:11:21]: testbed release detected to be: None 102s 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 [] 102s autopkgtest: DBG: testbed command exited with code 0 102s 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 [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: adding APT source: Types: deb deb-src 102s URIs: http://ftpmaster.internal/ubuntu/ 102s Suites: plucky-proposed 102s Components: main restricted universe multiverse 102s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 102s 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 [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 102s Package: * 102s Pin: release plucky-proposed 102s Pin-Priority: 500 102s 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 [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest [02:11:21]: updating testbed package index (apt update) 102s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 103s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 103s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 103s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 103s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 103s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 103s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [842 kB] 103s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [73.0 kB] 103s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 103s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [166 kB] 103s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 103s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [871 kB] 103s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 104s Fetched 2083 kB in 1s (1970 kB/s) 104s Reading package lists... 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 104s Package: * 104s Pin: release plucky-proposed 104s Pin-Priority: 100 104s 104s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 104s Pin: release plucky-proposed 104s Pin-Priority: 995 104s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s 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.kbiIQP/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s 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'] 105s + lsb_release --codename --short 105s + RELEASE=plucky 105s + cat 105s + [ plucky != trusty ] 105s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 105s Reading package lists... 105s Building dependency tree... 105s Reading state information... 105s Calculating upgrade... 106s The following packages were automatically installed and are no longer required: 106s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 106s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 106s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 106s linux-tools-6.11.0-8-generic 106s Use 'sudo apt autoremove' to remove them. 106s The following packages will be upgraded: 106s dash gcc-14-base libatomic1 libgcc-s1 libp11-kit0 libstdc++6 libtasn1-6 106s libxdmcp6 106s 8 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 106s Need to get 1471 kB of archives. 106s After this operation, 24.6 kB of additional disk space will be used. 106s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 106s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 106s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 106s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 106s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 106s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu2 [316 kB] 106s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 106s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 107s Preconfiguring packages ... 107s Fetched 1471 kB in 1s (2182 kB/s) 107s (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.) 107s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 107s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 107s Setting up dash (0.5.12-12ubuntu1) ... 107s (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.) 107s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 107s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 107s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 107s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 107s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 107s (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.) 107s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 107s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 107s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 107s (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.) 107s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 107s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 107s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 107s (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.) 107s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu2_s390x.deb ... 107s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu2) over (0.25.5-2ubuntu1) ... 107s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 107s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 107s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 107s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 107s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 107s Setting up libp11-kit0:s390x (0.25.5-2ubuntu2) ... 107s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 107s Setting up libtasn1-6:s390x (4.20.0-2) ... 107s Processing triggers for libc-bin (2.40-4ubuntu1) ... 107s Processing triggers for man-db (2.13.0-1) ... 108s Processing triggers for debianutils (5.21) ... 108s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 108s + /usr/lib/apt/apt-helper analyze-pattern ?true 108s + uname -r 108s + sed s/\./\\./g 108s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 108s + apt list ?obsolete 108s + tail -n+2 108s + cut -d/ -f1+ grep -v ^linux-.*6\.12\.0-15-generic.* 108s 108s + true 108s + obsolete_pkgs= 108s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 108s Reading package lists... 108s Building dependency tree... 108s Reading state information... 109s The following packages will be REMOVED: 109s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 109s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 109s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 109s linux-tools-6.11.0-8-generic* 109s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 109s After this operation, 167 MB disk space will be freed. 109s (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.) 109s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 109s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 109s Removing libpython3.12t64:s390x (3.12.9-1) ... 109s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 109s Removing libnsl2:s390x (1.3.0-3build3) ... 109s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 109s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 109s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 110s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 110s Processing triggers for libc-bin (2.40-4ubuntu1) ... 110s (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.) 110s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 110s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 110s + grep -q trusty /etc/lsb-release 110s + [ ! -d /usr/share/doc/unattended-upgrades ] 110s + [ ! -d /usr/share/doc/lxd ] 110s + [ ! -d /usr/share/doc/lxd-client ] 110s + [ ! -d /usr/share/doc/snapd ] 110s + type iptables 110s + cat 110s + chmod 755 /etc/rc.local 110s + . /etc/rc.local 110s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 110s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 110s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 110s + uname -m 110s + [ s390x = ppc64le ] 110s + [ -d /run/systemd/system ] 110s + systemd-detect-virt --quiet --vm 110s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 110s + cat 110s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 110s + echo COMPRESS=lz4 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [02:11:29]: upgrading testbed (apt dist-upgrade and autopurge) 110s 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'] 111s Reading package lists... 111s Building dependency tree... 111s Reading state information... 111s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 111s Starting 2 pkgProblemResolver with broken count: 0 111s Done 111s Entering ResolveByKeep 111s 111s The following packages will be upgraded: 111s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 112s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 112s Need to get 10.7 MB of archives. 112s After this operation, 305 kB of additional disk space will be used. 112s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 112s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 112s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 113s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 113s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 113s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 113s Preconfiguring packages ... 113s Fetched 10.7 MB in 2s (6943 kB/s) 113s (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.) 113s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 113s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 113s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 113s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 113s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 113s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 113s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 114s Checking for services that may need to be restarted... 114s Checking init scripts... 114s Checking for services that may need to be restarted... 114s Checking init scripts... 114s Stopping some services possibly affected by the upgrade (will be restarted later): 114s cron: stopping...done. 114s 114s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 114s Setting up libc6:s390x (2.41-1ubuntu1) ... 114s Checking for services that may need to be restarted... 114s Checking init scripts... 114s Restarting services possibly affected by the upgrade: 114s cron: restarting...done. 114s 114s Services restarted successfully. 114s (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.) 114s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 114s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 114s Setting up libc-bin (2.41-1ubuntu1) ... 114s (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.) 114s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 114s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 114s Setting up iproute2 (6.13.0-1ubuntu1) ... 114s Setting up locales (2.41-1ubuntu1) ... 114s Installing new version of config file /etc/locale.alias ... 115s Generating locales (this might take a while)... 116s en_US.UTF-8... done 116s Generation complete. 116s Setting up libc-dev-bin (2.41-1ubuntu1) ... 116s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 116s Processing triggers for man-db (2.13.0-1) ... 116s Processing triggers for systemd (257.2-3ubuntu1) ... 117s autopkgtest: DBG: testbed command exited with code 0 117s 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'] 117s Reading package lists... 117s Building dependency tree... 117s Reading state information... 118s Starting pkgProblemResolver with broken count: 0 118s Starting 2 pkgProblemResolver with broken count: 0 118s Done 118s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 118s autopkgtest: DBG: testbed command exited with code 0 118s 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.kbiIQP/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 118s autopkgtest: DBG: testbed command exited with code 1 118s autopkgtest [02:11:37]: rebooting testbed after setup commands that affected boot 118s autopkgtest: DBG: sending command to testbed: reboot 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 135s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.kbiIQP'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.kbiIQP/autopkgtest-reboot 135s autopkgtest: DBG: got reply from testbed: ok 135s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.kbiIQP/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.kbiIQP/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 135s autopkgtest: DBG: testbed command exited with code 0 135s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.kbiIQP/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.kbiIQP'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.kbiIQP/autopkgtest-reboot-prepare 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.kbiIQP/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.kbiIQP/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest [02:11:55]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 136s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.kbiIQP/testbed-packages"], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.kbiIQP/testbed-packages /tmp/autopkgtest-work.k41681sz/out/testbed-packages 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.kbiIQP'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.kbiIQP/autopkgtest-reboot 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.kbiIQP/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.kbiIQP/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.kbiIQP/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.kbiIQP'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.kbiIQP/autopkgtest-reboot-prepare 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.kbiIQP/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.kbiIQP/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: Binaries: initialising 139s autopkgtest [02:11:58]: @@@@@@@@@@@@@@@@@@@@ apt-source r-cran-av 139s autopkgtest: DBG: blame += r-cran-av 139s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 139s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'r-cran-av'], kind short, sout pipe, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^r-cran-av$'], kind short, sout pipe, serr raw, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'r-cran-av=0.9.0+dfsg-1build1'], kind short, sout pipe, serr raw, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: install_deps: deps_new=[] 140s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s 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.kbiIQP/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source r-cran-av=0.9.0+dfsg-1build1 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 r-cran-av_*.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'] 140s + cd / 140s + mktemp -d /tmp/autopkgtest.kbiIQP/build.XXX 140s + builddir=/tmp/autopkgtest.kbiIQP/build.7Su 140s + cd /tmp/autopkgtest.kbiIQP/build.7Su 140s + apt-get source -d -q --only-source r-cran-av=0.9.0+dfsg-1build1 140s + OUT=Reading package lists... 140s NOTICE: 'r-cran-av' packaging is maintained in the 'Git' version control system at: 140s https://salsa.debian.org/r-pkg-team/r-cran-av.git 140s Please use: 140s git clone https://salsa.debian.org/r-pkg-team/r-cran-av.git 140s to retrieve the latest (possibly unreleased) updates to the package. 140s Need to get 34.1 kB of source archives. 140s Get:1 http://ftpmaster.internal/ubuntu plucky/universe r-cran-av 0.9.0+dfsg-1build1 (dsc) [2125 B] 140s Get:2 http://ftpmaster.internal/ubuntu plucky/universe r-cran-av 0.9.0+dfsg-1build1 (tar) [27.4 kB] 140s Get:3 http://ftpmaster.internal/ubuntu plucky/universe r-cran-av 0.9.0+dfsg-1build1 (diff) [4548 B] 140s Fetched 34.1 kB in 0s (104 kB/s) 140s Download complete and in download only mode 140s + [ -n ] 140s + echo Reading package lists... 140s NOTICE: 'r-cran-av' packaging is maintained in the 'Git' version control system at: 140s https://salsa.debian.org/r-pkg-team/r-cran-av.git 140s Please use: 140s git clone https://salsa.debian.org/r-pkg-team/r-cran-av.git 140s to retrieve the latest (possibly unreleased) updates to the package. 140s Need to get 34.1 kB of source archives. 140s Get:1 http://ftpmaster.internal/ubuntu plucky/universe r-cran-av 0.9.0+dfsg-1build1 (dsc) [2125 B] 140s Get:2 http://ftpmaster.internal/ubuntu plucky/universe r-cran-av 0.9.0+dfsg-1build1 (tar) [27.4 kB] 140s Get:3 http://ftpmaster.internal/ubuntu plucky/universe r-cran-av 0.9.0+dfsg-1build1 (diff) [4548 B] 140s Fetched 34.1 kB in 0s (104 kB/s) 140s Download complete and in download only mode 140s + grep ^Get: 140s Get:1 http://ftpmaster.internal/ubuntu plucky/universe r-cran-av 0.9.0+dfsg-1build1 (dsc) [2125 B] 140s Get:2 http://ftpmaster.internal/ubuntu plucky/universe r-cran-av 0.9.0+dfsg-1build1 (tar) [27.4 kB] 140s Get:3 http://ftpmaster.internal/ubuntu plucky/universe r-cran-av 0.9.0+dfsg-1build1 (diff) [4548 B] 140s + dpkg-source -x r-cran-av_0.9.0+dfsg-1build1.dsc src 140s gpgv: Signature made Wed Jul 31 15:23:43 2024 UTC 140s gpgv: using RSA key 92978A6E195E4921825F7FF0F34F09744E9F5DD9 140s gpgv: Can't check signature: No public key 140s dpkg-source: warning: cannot verify inline signature for ./r-cran-av_0.9.0+dfsg-1build1.dsc: no acceptable signature found 140s + chmod -R a+rX . 140s + cd src/. 140s + pwd 140s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest [02:11:59]: testing package r-cran-av version 0.9.0+dfsg-1build1 140s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.kbiIQP/build.7Su/src/debian/ /tmp/autopkgtest-work.k41681sz/out/pkg/debian/ 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: autodep8 generated control: ----- 141s Tests: run-unit-test 141s Depends: @, 141s r-cran-testthat, 141s r-cran-ps, 141s r-cran-ggplot2 141s Restrictions: allow-stderr 141s 141s 141s Test-Command: /usr/share/dh-r/pkg-r-autopkgtest 141s Depends: @, pkg-r-autopkgtest, 141s Restrictions: allow-stderr, 141s Features: test-name=pkg-r-autopkgtest 141s 141s ------- 141s autopkgtest: DBG: processing dependency @ 141s autopkgtest: DBG: synthesised dependency r-cran-av 141s autopkgtest: DBG: processing dependency r-cran-testthat 141s autopkgtest: DBG: processing dependency r-cran-ps 141s autopkgtest: DBG: processing dependency r-cran-ggplot2 141s autopkgtest: DBG: Test defined: name run-unit-test path debian/tests/run-unit-test command "None" restrictions ['allow-stderr'] features [] depends ['r-cran-av', 'r-cran-testthat', 'r-cran-ps', 'r-cran-ggplot2'] 141s autopkgtest: DBG: processing dependency @ 141s autopkgtest: DBG: synthesised dependency r-cran-av 141s autopkgtest: DBG: processing dependency pkg-r-autopkgtest 141s autopkgtest: DBG: Test defined: name pkg-r-autopkgtest path None command "/usr/share/dh-r/pkg-r-autopkgtest" restrictions ['allow-stderr'] features ['test-name=pkg-r-autopkgtest'] depends ['r-cran-av', 'pkg-r-autopkgtest'] 141s autopkgtest [02:12:00]: build not needed 141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.kbiIQP/build.7Su/src/ /tmp/autopkgtest-work.k41681sz/out/tests-tree/ 141s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: autodep8 generated control: ----- 142s Tests: run-unit-test 142s Depends: @, 142s r-cran-testthat, 142s r-cran-ps, 142s r-cran-ggplot2 142s Restrictions: allow-stderr 142s 142s 142s Test-Command: /usr/share/dh-r/pkg-r-autopkgtest 142s Depends: @, r-cran-testthat,r-cran-ps,r-cran-ggplot2, pkg-r-autopkgtest, 142s Restrictions: allow-stderr, 142s Features: test-name=pkg-r-autopkgtest 142s 142s ------- 142s autopkgtest: DBG: processing dependency @ 142s autopkgtest: DBG: synthesised dependency r-cran-av 142s autopkgtest: DBG: processing dependency r-cran-testthat 142s autopkgtest: DBG: processing dependency r-cran-ps 142s autopkgtest: DBG: processing dependency r-cran-ggplot2 142s autopkgtest: DBG: Test defined: name run-unit-test path debian/tests/run-unit-test command "None" restrictions ['allow-stderr'] features [] depends ['r-cran-av', 'r-cran-testthat', 'r-cran-ps', 'r-cran-ggplot2'] 142s autopkgtest: DBG: processing dependency @ 142s autopkgtest: DBG: synthesised dependency r-cran-av 142s autopkgtest: DBG: processing dependency r-cran-testthat 142s autopkgtest: DBG: processing dependency r-cran-ps 142s autopkgtest: DBG: processing dependency r-cran-ggplot2 142s autopkgtest: DBG: processing dependency pkg-r-autopkgtest 142s autopkgtest: DBG: Test defined: name pkg-r-autopkgtest path None command "/usr/share/dh-r/pkg-r-autopkgtest" restrictions ['allow-stderr'] features ['test-name=pkg-r-autopkgtest'] depends ['r-cran-av', 'r-cran-testthat', 'r-cran-ps', 'r-cran-ggplot2', 'pkg-r-autopkgtest'] 142s autopkgtest [02:12:01]: test run-unit-test: preparing testbed 142s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['r-cran-av', 'r-cran-testthat', 'r-cran-ps', 'r-cran-ggplot2'] 142s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 142s autopkgtest: DBG: install_deps: deps_new=['r-cran-av', 'r-cran-testthat', 'r-cran-ps', 'r-cran-ggplot2'] 142s autopkgtest: DBG: install-deps: satisfying r-cran-av, r-cran-testthat, r-cran-ps, r-cran-ggplot2 142s autopkgtest: DBG: can use apt-get on testbed: True 142s 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', 'r-cran-av, r-cran-testthat, r-cran-ps, r-cran-ggplot2'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 142s Reading package lists... 142s Building dependency tree... 142s Reading state information... 143s Starting pkgProblemResolver with broken count: 0 143s Starting 2 pkgProblemResolver with broken count: 0 143s Done 143s The following NEW packages will be installed: 143s fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-mono libaom3 143s libasound2-data libasound2t64 libass9 libavcodec61 libavfilter10 143s libavformat61 libavutil59 libblas3 libbluray2 libbs2b0 libcairo-gobject2 143s libcairo2 libchromaprint1 libcjson1 libcodec2-1.2 libdatrie1 libdav1d7 143s libdeflate0 libdvdnav4 libdvdread8t64 libfftw3-double3 libflite1 143s libfontconfig1 libfreetype6 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common 143s libgfortran5 libgme0 libgomp1 libgraphite2-3 libgsm1 libharfbuzz0b libice6 143s libjbig0 libjpeg-turbo8 libjpeg8 libjxl0.11 liblapack3 liblcms2-2 143s liblilv-0-0 libmbedcrypto16 libmp3lame0 libmpg123-0t64 libmysofa1 143s libnorm1t64 libogg0 libopenjp2-7 libopenmpt0t64 libopus0 libpango-1.0-0 143s libpangocairo-1.0-0 libpangoft2-1.0-0 libpaper-utils libpaper2 143s libpgm-5.3-0t64 libpixman-1-0 libplacebo349 libpostproc58 librabbitmq4 143s librav1e0.7 librist4 librsvg2-2 librubberband2 libsamplerate0 libserd-0-0 143s libsharpyuv0 libshine3 libsm6 libsnappy1v5 libsodium23 libsord-0-0 libsoxr0 143s libspeex1 libsratom-0-0 libsrt1.5-gnutls libssh-4 libsvtav1enc2 143s libswresample5 libswscale8 libtcl8.6 libthai-data libthai0 libtheoradec1 143s libtheoraenc1 libtiff6 libtk8.6 libtwolame0 libudfread0 libunibreak6 143s libva-drm2 libva-x11-2 libva2 libvdpau1 libvidstab1.1 libvorbis0a 143s libvorbisenc2 libvorbisfile3 libvpx9 libvulkan1 libwebp7 libwebpmux3 143s libx11-xcb1 libx264-164 libx265-215 libxcb-dri3-0 libxcb-render0 libxcb-shm0 143s libxfixes3 libxft2 libxrender1 libxss1 libxt6t64 libxvidcore4 libzimg2 143s libzix-0-0 libzmq5 libzvbi-common libzvbi0t64 ocl-icd-libopencl1 r-base-core 143s r-cran-av r-cran-brio r-cran-callr r-cran-cli r-cran-colorspace 143s r-cran-crayon r-cran-desc r-cran-diffobj r-cran-digest r-cran-evaluate 143s r-cran-fansi r-cran-farver r-cran-fs r-cran-ggplot2 r-cran-glue 143s r-cran-gtable r-cran-isoband r-cran-jsonlite r-cran-labeling r-cran-lattice 143s r-cran-lifecycle r-cran-magrittr r-cran-mass r-cran-matrix r-cran-mgcv 143s r-cran-munsell r-cran-nlme r-cran-pillar r-cran-pkgbuild r-cran-pkgconfig 143s r-cran-pkgload r-cran-praise r-cran-processx r-cran-ps r-cran-r6 143s r-cran-rcolorbrewer r-cran-rlang r-cran-rprojroot r-cran-scales 143s r-cran-testthat r-cran-tibble r-cran-utf8 r-cran-vctrs r-cran-viridislite 143s r-cran-waldo r-cran-withr unzip x11-common xdg-utils zip 143s 0 upgraded, 175 newly installed, 0 to remove and 0 not upgraded. 143s Need to get 141 MB of archives. 143s After this operation, 295 MB of additional disk space will be used. 143s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 144s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 144s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 144s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 144s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 144s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-1.1ubuntu2 [191 kB] 144s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 144s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2-data all 1.2.13-1build1 [21.1 kB] 144s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libasound2t64 s390x 1.2.13-1build1 [411 kB] 144s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 144s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 144s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x libunibreak6 s390x 6.1-2 [26.1 kB] 144s Get:13 http://ftpmaster.internal/ubuntu plucky/universe s390x libass9 s390x 1:0.17.3-1 [110 kB] 144s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x libva2 s390x 2.22.0-2 [74.8 kB] 144s Get:15 http://ftpmaster.internal/ubuntu plucky/universe s390x libva-drm2 s390x 2.22.0-2 [7030 B] 144s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libx11-xcb1 s390x 2:1.8.10-2 [7954 B] 144s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-dri3-0 s390x 1.17.0-2 [7616 B] 144s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libxfixes3 s390x 1:6.0.0-2build1 [11.3 kB] 144s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x libva-x11-2 s390x 2.22.0-2 [12.5 kB] 144s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libvdpau1 s390x 1.5-3 [28.2 kB] 144s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x ocl-icd-libopencl1 s390x 2.3.2-1build1 [41.1 kB] 144s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x libavutil59 s390x 7:7.1-3ubuntu3 [452 kB] 144s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 144s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 144s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 144s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 144s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 144s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x libcodec2-1.2 s390x 1.2.0-3 [9027 kB] 145s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x libdav1d7 s390x 1.5.1-1 [312 kB] 145s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x libgsm1 s390x 1.0.22-1build1 [32.7 kB] 145s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 145s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x libjxl0.11 s390x 0.11.1-1 [1008 kB] 145s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libmp3lame0 s390x 3.100-6build1 [160 kB] 145s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 145s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libopus0 s390x 1.5.2-2 [2928 kB] 145s Get:36 http://ftpmaster.internal/ubuntu plucky/universe s390x librav1e0.7 s390x 0.7.1-9 [845 kB] 145s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo-gobject2 s390x 1.18.2-2 [127 kB] 145s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf2.0-common all 2.42.12+dfsg-2 [8004 B] 145s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 145s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 145s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 145s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 145s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 145s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 145s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 146s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libgdk-pixbuf-2.0-0 s390x 2.42.12+dfsg-2 [154 kB] 146s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 146s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 146s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 146s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 146s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 146s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 146s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x librsvg2-2 s390x 2.59.90+dfsg-2 [1986 kB] 146s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x libshine3 s390x 3.1.1-2build1 [45.7 kB] 146s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 146s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x libspeex1 s390x 1.2.1-3 [70.7 kB] 146s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x libsvtav1enc2 s390x 2.3.0+dfsg-1 [2294 kB] 146s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 146s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x libsoxr0 s390x 0.1.3-4build3 [69.5 kB] 146s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x libswresample5 s390x 7:7.1-3ubuntu3 [63.2 kB] 146s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libtheoradec1 s390x 1.2.0~alpha1+dfsg-5 [68.5 kB] 146s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libogg0 s390x 1.3.5-3build1 [24.4 kB] 146s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libtheoraenc1 s390x 1.2.0~alpha1+dfsg-5 [142 kB] 146s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x libtwolame0 s390x 0.4.0-2build3 [56.4 kB] 146s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbis0a s390x 1.3.7-2 [112 kB] 146s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisenc2 s390x 1.3.7-2 [80.6 kB] 146s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libvpx9 s390x 1.15.0-1ubuntu1 [1604 kB] 146s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 146s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x libx264-164 s390x 2:0.164.3108+git31e19f9-2build1 [592 kB] 146s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libx265-215 s390x 4.1-2 [904 kB] 146s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x libxvidcore4 s390x 2:1.3.7-1build1 [214 kB] 146s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x libzvbi-common all 0.2.43-2ubuntu1 [42.7 kB] 146s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x libzvbi0t64 s390x 0.2.43-2ubuntu1 [275 kB] 146s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x libavcodec61 s390x 7:7.1-3ubuntu3 [8121 kB] 146s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x libudfread0 s390x 1.1.2-1build1 [18.5 kB] 146s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libbluray2 s390x 1:1.3.4-1build1 [173 kB] 146s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libchromaprint1 s390x 1.5.1-7 [34.2 kB] 146s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x libdvdread8t64 s390x 6.1.3-2 [54.6 kB] 146s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x libdvdnav4 s390x 6.1.1-3build1 [40.3 kB] 146s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x libgme0 s390x 0.6.3-7build1 [150 kB] 146s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libmpg123-0t64 s390x 1.32.10-1 [179 kB] 146s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libvorbisfile3 s390x 1.3.7-2 [18.2 kB] 146s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x libopenmpt0t64 s390x 0.7.13-1 [732 kB] 146s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x librabbitmq4 s390x 0.15.0-1 [37.9 kB] 146s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x libcjson1 s390x 1.7.18-3 [22.9 kB] 146s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x libmbedcrypto16 s390x 3.6.2-3ubuntu1 [261 kB] 146s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librist4 s390x 0.2.11+dfsg-1 [77.5 kB] 146s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x libsrt1.5-gnutls s390x 1.5.4-1 [345 kB] 146s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libssh-4 s390x 0.11.1-1 [203 kB] 146s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x libnorm1t64 s390x 1.5.9+dfsg-3.1build1 [158 kB] 146s Get:91 http://ftpmaster.internal/ubuntu plucky/universe s390x libpgm-5.3-0t64 s390x 5.3.128~dfsg-2.1build1 [169 kB] 146s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libsodium23 s390x 1.0.18-1build3 [138 kB] 146s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x libzmq5 s390x 4.3.5-1build2 [258 kB] 146s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x libavformat61 s390x 7:7.1-3ubuntu3 [1315 kB] 147s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x libbs2b0 s390x 3.1.0+dfsg-8 [10.8 kB] 147s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x libflite1 s390x 2.2-7 [13.6 MB] 147s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x libserd-0-0 s390x 0.32.4-1 [44.1 kB] 147s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x libzix-0-0 s390x 0.6.2-1 [27.1 kB] 147s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x libsord-0-0 s390x 0.16.18-1 [15.8 kB] 147s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x libsratom-0-0 s390x 0.6.18-1 [17.0 kB] 147s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x liblilv-0-0 s390x 0.24.26-1 [41.4 kB] 147s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x libmysofa1 s390x 1.3.2+dfsg-2ubuntu2 [1160 kB] 148s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libvulkan1 s390x 1.4.304.0-1 [147 kB] 148s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x libplacebo349 s390x 7.349.0-3 [3077 kB] 148s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x libpostproc58 s390x 7:7.1-3ubuntu3 [69.4 kB] 148s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libfftw3-double3 s390x 3.3.10-2fakesync1build1 [511 kB] 148s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libsamplerate0 s390x 0.2.2-4build1 [1344 kB] 148s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librubberband2 s390x 3.3.0+dfsg-2build2 [139 kB] 148s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x libswscale8 s390x 7:7.1-3ubuntu3 [216 kB] 148s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x libvidstab1.1 s390x 1.1.0-2build1 [45.8 kB] 148s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x libzimg2 s390x 3.0.5+ds1-1build1 [86.6 kB] 148s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x libavfilter10 s390x 7:7.1-3ubuntu3 [4868 kB] 148s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 148s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 14.2.0-17ubuntu1 [588 kB] 148s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 148s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 148s Get:117 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 148s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper2 s390x 2.2.5-0.3 [17.2 kB] 148s Get:119 http://ftpmaster.internal/ubuntu plucky/main s390x libpaper-utils s390x 2.2.5-0.3 [15.3 kB] 148s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 148s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x libtcl8.6 s390x 8.6.16+dfsg-1 [1034 kB] 148s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 148s Get:123 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 148s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x libtk8.6 s390x 8.6.16-1 [830 kB] 148s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 148s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x zip s390x 3.0-14ubuntu2 [187 kB] 148s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x unzip s390x 6.0-28ubuntu6 [186 kB] 148s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x xdg-utils all 1.2.1-2ubuntu1 [66.0 kB] 148s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x r-base-core s390x 4.4.2-1build1 [28.6 MB] 149s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-av s390x 0.9.0+dfsg-1build1 [82.6 kB] 149s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-brio s390x 1.1.5-1 [38.6 kB] 149s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ps s390x 1.8.1-1 [395 kB] 149s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-r6 all 2.5.1-1 [99.0 kB] 149s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-processx s390x 3.8.5-1 [354 kB] 149s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-callr all 3.7.6-1 [458 kB] 149s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-cli s390x 3.6.3-1 [1349 kB] 149s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-colorspace s390x 2.1-1+dfsg-1 [1567 kB] 149s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-crayon all 1.5.3-1 [165 kB] 149s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-desc all 1.4.3-1 [359 kB] 149s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-diffobj s390x 0.3.5-1 [1115 kB] 149s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-digest s390x 0.6.37-1 [205 kB] 149s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-evaluate all 1.0.3-1 [114 kB] 149s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fansi s390x 1.0.5-1 [615 kB] 149s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-farver s390x 2.1.2-1 [1353 kB] 149s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-fs s390x 1.6.5+dfsg-1 [245 kB] 149s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-glue s390x 1.8.0-1 [164 kB] 149s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rlang s390x 1.1.5-1 [1713 kB] 149s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lifecycle all 1.0.4+dfsg-1 [110 kB] 149s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-gtable all 0.3.6+dfsg-1 [199 kB] 149s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-isoband s390x 0.2.7-1 [1481 kB] 149s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mass s390x 7.3-64-1 [1113 kB] 149s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-lattice s390x 0.22-6-1 [1340 kB] 149s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-nlme s390x 3.1.167-1 [2323 kB] 149s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-matrix s390x 1.7-2-1 [4441 kB] 149s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-mgcv s390x 1.9-1-1 [3348 kB] 150s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-labeling all 0.4.3-1 [62.1 kB] 150s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-munsell all 0.5.1-1 [213 kB] 150s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rcolorbrewer all 1.1-3-1build1 [55.4 kB] 150s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-viridislite all 0.4.2-2 [1088 kB] 150s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-scales all 1.3.0-1 [603 kB] 150s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-magrittr s390x 2.0.3-1 [154 kB] 150s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-utf8 s390x 1.2.4-1 [143 kB] 150s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-vctrs s390x 0.6.5-1 [1448 kB] 150s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pillar all 1.10.1+dfsg-1 [453 kB] 150s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgconfig all 2.0.3-2build1 [19.7 kB] 150s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-tibble s390x 3.2.1+dfsg-3 [420 kB] 150s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-withr all 3.0.2+dfsg-1 [214 kB] 150s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-ggplot2 all 3.5.1+dfsg-1 [3940 kB] 150s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-jsonlite s390x 1.8.9+dfsg-1 [447 kB] 150s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgbuild all 1.4.6-1 [213 kB] 150s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-rprojroot all 2.0.4-2 [125 kB] 150s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-pkgload all 1.4.0-1 [247 kB] 150s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-praise all 1.0.0-4build1 [20.3 kB] 150s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-waldo all 0.6.1-2 [150 kB] 150s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x r-cran-testthat s390x 3.2.1.1-1 [1638 kB] 151s Preconfiguring packages ... 151s Fetched 141 MB in 7s (20.4 MB/s) 151s Selecting previously unselected package libfreetype6:s390x. 151s (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.) 151s Preparing to unpack .../000-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 151s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 151s Selecting previously unselected package fonts-dejavu-mono. 151s Preparing to unpack .../001-fonts-dejavu-mono_2.37-8_all.deb ... 151s Unpacking fonts-dejavu-mono (2.37-8) ... 151s Selecting previously unselected package fonts-dejavu-core. 151s Preparing to unpack .../002-fonts-dejavu-core_2.37-8_all.deb ... 151s Unpacking fonts-dejavu-core (2.37-8) ... 151s Selecting previously unselected package fontconfig-config. 151s Preparing to unpack .../003-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 151s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 151s Selecting previously unselected package libfontconfig1:s390x. 151s Preparing to unpack .../004-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 151s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 151s Selecting previously unselected package fontconfig. 151s Preparing to unpack .../005-fontconfig_2.15.0-1.1ubuntu2_s390x.deb ... 151s Unpacking fontconfig (2.15.0-1.1ubuntu2) ... 151s Selecting previously unselected package libaom3:s390x. 151s Preparing to unpack .../006-libaom3_3.12.0-1_s390x.deb ... 151s Unpacking libaom3:s390x (3.12.0-1) ... 151s Selecting previously unselected package libasound2-data. 151s Preparing to unpack .../007-libasound2-data_1.2.13-1build1_all.deb ... 151s Unpacking libasound2-data (1.2.13-1build1) ... 151s Selecting previously unselected package libasound2t64:s390x. 151s Preparing to unpack .../008-libasound2t64_1.2.13-1build1_s390x.deb ... 151s Unpacking libasound2t64:s390x (1.2.13-1build1) ... 151s Selecting previously unselected package libgraphite2-3:s390x. 151s Preparing to unpack .../009-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 151s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 151s Selecting previously unselected package libharfbuzz0b:s390x. 151s Preparing to unpack .../010-libharfbuzz0b_10.2.0-1_s390x.deb ... 151s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 151s Selecting previously unselected package libunibreak6:s390x. 151s Preparing to unpack .../011-libunibreak6_6.1-2_s390x.deb ... 151s Unpacking libunibreak6:s390x (6.1-2) ... 151s Selecting previously unselected package libass9:s390x. 151s Preparing to unpack .../012-libass9_1%3a0.17.3-1_s390x.deb ... 151s Unpacking libass9:s390x (1:0.17.3-1) ... 151s Selecting previously unselected package libva2:s390x. 151s Preparing to unpack .../013-libva2_2.22.0-2_s390x.deb ... 151s Unpacking libva2:s390x (2.22.0-2) ... 151s Selecting previously unselected package libva-drm2:s390x. 151s Preparing to unpack .../014-libva-drm2_2.22.0-2_s390x.deb ... 151s Unpacking libva-drm2:s390x (2.22.0-2) ... 151s Selecting previously unselected package libx11-xcb1:s390x. 151s Preparing to unpack .../015-libx11-xcb1_2%3a1.8.10-2_s390x.deb ... 151s Unpacking libx11-xcb1:s390x (2:1.8.10-2) ... 151s Selecting previously unselected package libxcb-dri3-0:s390x. 151s Preparing to unpack .../016-libxcb-dri3-0_1.17.0-2_s390x.deb ... 151s Unpacking libxcb-dri3-0:s390x (1.17.0-2) ... 151s Selecting previously unselected package libxfixes3:s390x. 151s Preparing to unpack .../017-libxfixes3_1%3a6.0.0-2build1_s390x.deb ... 151s Unpacking libxfixes3:s390x (1:6.0.0-2build1) ... 151s Selecting previously unselected package libva-x11-2:s390x. 151s Preparing to unpack .../018-libva-x11-2_2.22.0-2_s390x.deb ... 151s Unpacking libva-x11-2:s390x (2.22.0-2) ... 151s Selecting previously unselected package libvdpau1:s390x. 151s Preparing to unpack .../019-libvdpau1_1.5-3_s390x.deb ... 151s Unpacking libvdpau1:s390x (1.5-3) ... 151s Selecting previously unselected package ocl-icd-libopencl1:s390x. 151s Preparing to unpack .../020-ocl-icd-libopencl1_2.3.2-1build1_s390x.deb ... 151s Unpacking ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 151s Selecting previously unselected package libavutil59:s390x. 151s Preparing to unpack .../021-libavutil59_7%3a7.1-3ubuntu3_s390x.deb ... 151s Unpacking libavutil59:s390x (7:7.1-3ubuntu3) ... 151s Selecting previously unselected package libpixman-1-0:s390x. 151s Preparing to unpack .../022-libpixman-1-0_0.44.0-3_s390x.deb ... 151s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 151s Selecting previously unselected package libxcb-render0:s390x. 151s Preparing to unpack .../023-libxcb-render0_1.17.0-2_s390x.deb ... 151s Unpacking libxcb-render0:s390x (1.17.0-2) ... 151s Selecting previously unselected package libxcb-shm0:s390x. 151s Preparing to unpack .../024-libxcb-shm0_1.17.0-2_s390x.deb ... 151s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 151s Selecting previously unselected package libxrender1:s390x. 151s Preparing to unpack .../025-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 151s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 151s Selecting previously unselected package libcairo2:s390x. 151s Preparing to unpack .../026-libcairo2_1.18.2-2_s390x.deb ... 151s Unpacking libcairo2:s390x (1.18.2-2) ... 151s Selecting previously unselected package libcodec2-1.2:s390x. 151s Preparing to unpack .../027-libcodec2-1.2_1.2.0-3_s390x.deb ... 151s Unpacking libcodec2-1.2:s390x (1.2.0-3) ... 151s Selecting previously unselected package libdav1d7:s390x. 151s Preparing to unpack .../028-libdav1d7_1.5.1-1_s390x.deb ... 151s Unpacking libdav1d7:s390x (1.5.1-1) ... 151s Selecting previously unselected package libgsm1:s390x. 151s Preparing to unpack .../029-libgsm1_1.0.22-1build1_s390x.deb ... 151s Unpacking libgsm1:s390x (1.0.22-1build1) ... 151s Selecting previously unselected package liblcms2-2:s390x. 151s Preparing to unpack .../030-liblcms2-2_2.16-2_s390x.deb ... 151s Unpacking liblcms2-2:s390x (2.16-2) ... 151s Selecting previously unselected package libjxl0.11:s390x. 151s Preparing to unpack .../031-libjxl0.11_0.11.1-1_s390x.deb ... 151s Unpacking libjxl0.11:s390x (0.11.1-1) ... 151s Selecting previously unselected package libmp3lame0:s390x. 151s Preparing to unpack .../032-libmp3lame0_3.100-6build1_s390x.deb ... 151s Unpacking libmp3lame0:s390x (3.100-6build1) ... 151s Selecting previously unselected package libopenjp2-7:s390x. 151s Preparing to unpack .../033-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 151s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 151s Selecting previously unselected package libopus0:s390x. 151s Preparing to unpack .../034-libopus0_1.5.2-2_s390x.deb ... 151s Unpacking libopus0:s390x (1.5.2-2) ... 151s Selecting previously unselected package librav1e0.7:s390x. 151s Preparing to unpack .../035-librav1e0.7_0.7.1-9_s390x.deb ... 151s Unpacking librav1e0.7:s390x (0.7.1-9) ... 151s Selecting previously unselected package libcairo-gobject2:s390x. 151s Preparing to unpack .../036-libcairo-gobject2_1.18.2-2_s390x.deb ... 151s Unpacking libcairo-gobject2:s390x (1.18.2-2) ... 151s Selecting previously unselected package libgdk-pixbuf2.0-common. 151s Preparing to unpack .../037-libgdk-pixbuf2.0-common_2.42.12+dfsg-2_all.deb ... 151s Unpacking libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 151s Selecting previously unselected package libjpeg-turbo8:s390x. 151s Preparing to unpack .../038-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 151s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 151s Selecting previously unselected package libjpeg8:s390x. 151s Preparing to unpack .../039-libjpeg8_8c-2ubuntu11_s390x.deb ... 151s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 151s Selecting previously unselected package libdeflate0:s390x. 151s Preparing to unpack .../040-libdeflate0_1.23-1_s390x.deb ... 151s Unpacking libdeflate0:s390x (1.23-1) ... 151s Selecting previously unselected package libjbig0:s390x. 151s Preparing to unpack .../041-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 151s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 151s Selecting previously unselected package libsharpyuv0:s390x. 151s Preparing to unpack .../042-libsharpyuv0_1.5.0-0.1_s390x.deb ... 151s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 151s Selecting previously unselected package libwebp7:s390x. 151s Preparing to unpack .../043-libwebp7_1.5.0-0.1_s390x.deb ... 151s Unpacking libwebp7:s390x (1.5.0-0.1) ... 151s Selecting previously unselected package libtiff6:s390x. 151s Preparing to unpack .../044-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 151s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 151s Selecting previously unselected package libgdk-pixbuf-2.0-0:s390x. 151s Preparing to unpack .../045-libgdk-pixbuf-2.0-0_2.42.12+dfsg-2_s390x.deb ... 151s Unpacking libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 151s Selecting previously unselected package libthai-data. 151s Preparing to unpack .../046-libthai-data_0.1.29-2build1_all.deb ... 151s Unpacking libthai-data (0.1.29-2build1) ... 151s Selecting previously unselected package libdatrie1:s390x. 151s Preparing to unpack .../047-libdatrie1_0.2.13-3build1_s390x.deb ... 151s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 151s Selecting previously unselected package libthai0:s390x. 151s Preparing to unpack .../048-libthai0_0.1.29-2build1_s390x.deb ... 151s Unpacking libthai0:s390x (0.1.29-2build1) ... 151s Selecting previously unselected package libpango-1.0-0:s390x. 151s Preparing to unpack .../049-libpango-1.0-0_1.56.1-1_s390x.deb ... 151s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 151s Selecting previously unselected package libpangoft2-1.0-0:s390x. 151s Preparing to unpack .../050-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 151s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 152s Selecting previously unselected package libpangocairo-1.0-0:s390x. 152s Preparing to unpack .../051-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 152s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 152s Selecting previously unselected package librsvg2-2:s390x. 152s Preparing to unpack .../052-librsvg2-2_2.59.90+dfsg-2_s390x.deb ... 152s Unpacking librsvg2-2:s390x (2.59.90+dfsg-2) ... 152s Selecting previously unselected package libshine3:s390x. 152s Preparing to unpack .../053-libshine3_3.1.1-2build1_s390x.deb ... 152s Unpacking libshine3:s390x (3.1.1-2build1) ... 152s Selecting previously unselected package libsnappy1v5:s390x. 152s Preparing to unpack .../054-libsnappy1v5_1.2.1-1_s390x.deb ... 152s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 152s Selecting previously unselected package libspeex1:s390x. 152s Preparing to unpack .../055-libspeex1_1.2.1-3_s390x.deb ... 152s Unpacking libspeex1:s390x (1.2.1-3) ... 152s Selecting previously unselected package libsvtav1enc2:s390x. 152s Preparing to unpack .../056-libsvtav1enc2_2.3.0+dfsg-1_s390x.deb ... 152s Unpacking libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 152s Selecting previously unselected package libgomp1:s390x. 152s Preparing to unpack .../057-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 152s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 152s Selecting previously unselected package libsoxr0:s390x. 152s Preparing to unpack .../058-libsoxr0_0.1.3-4build3_s390x.deb ... 152s Unpacking libsoxr0:s390x (0.1.3-4build3) ... 152s Selecting previously unselected package libswresample5:s390x. 152s Preparing to unpack .../059-libswresample5_7%3a7.1-3ubuntu3_s390x.deb ... 152s Unpacking libswresample5:s390x (7:7.1-3ubuntu3) ... 152s Selecting previously unselected package libtheoradec1:s390x. 152s Preparing to unpack .../060-libtheoradec1_1.2.0~alpha1+dfsg-5_s390x.deb ... 152s Unpacking libtheoradec1:s390x (1.2.0~alpha1+dfsg-5) ... 152s Selecting previously unselected package libogg0:s390x. 152s Preparing to unpack .../061-libogg0_1.3.5-3build1_s390x.deb ... 152s Unpacking libogg0:s390x (1.3.5-3build1) ... 152s Selecting previously unselected package libtheoraenc1:s390x. 152s Preparing to unpack .../062-libtheoraenc1_1.2.0~alpha1+dfsg-5_s390x.deb ... 152s Unpacking libtheoraenc1:s390x (1.2.0~alpha1+dfsg-5) ... 152s Selecting previously unselected package libtwolame0:s390x. 152s Preparing to unpack .../063-libtwolame0_0.4.0-2build3_s390x.deb ... 152s Unpacking libtwolame0:s390x (0.4.0-2build3) ... 152s Selecting previously unselected package libvorbis0a:s390x. 152s Preparing to unpack .../064-libvorbis0a_1.3.7-2_s390x.deb ... 152s Unpacking libvorbis0a:s390x (1.3.7-2) ... 152s Selecting previously unselected package libvorbisenc2:s390x. 152s Preparing to unpack .../065-libvorbisenc2_1.3.7-2_s390x.deb ... 152s Unpacking libvorbisenc2:s390x (1.3.7-2) ... 152s Selecting previously unselected package libvpx9:s390x. 152s Preparing to unpack .../066-libvpx9_1.15.0-1ubuntu1_s390x.deb ... 152s Unpacking libvpx9:s390x (1.15.0-1ubuntu1) ... 152s Selecting previously unselected package libwebpmux3:s390x. 152s Preparing to unpack .../067-libwebpmux3_1.5.0-0.1_s390x.deb ... 152s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 152s Selecting previously unselected package libx264-164:s390x. 152s Preparing to unpack .../068-libx264-164_2%3a0.164.3108+git31e19f9-2build1_s390x.deb ... 152s Unpacking libx264-164:s390x (2:0.164.3108+git31e19f9-2build1) ... 152s Selecting previously unselected package libx265-215:s390x. 152s Preparing to unpack .../069-libx265-215_4.1-2_s390x.deb ... 152s Unpacking libx265-215:s390x (4.1-2) ... 152s Selecting previously unselected package libxvidcore4:s390x. 152s Preparing to unpack .../070-libxvidcore4_2%3a1.3.7-1build1_s390x.deb ... 152s Unpacking libxvidcore4:s390x (2:1.3.7-1build1) ... 152s Selecting previously unselected package libzvbi-common. 152s Preparing to unpack .../071-libzvbi-common_0.2.43-2ubuntu1_all.deb ... 152s Unpacking libzvbi-common (0.2.43-2ubuntu1) ... 152s Selecting previously unselected package libzvbi0t64:s390x. 152s Preparing to unpack .../072-libzvbi0t64_0.2.43-2ubuntu1_s390x.deb ... 152s Unpacking libzvbi0t64:s390x (0.2.43-2ubuntu1) ... 152s Selecting previously unselected package libavcodec61:s390x. 152s Preparing to unpack .../073-libavcodec61_7%3a7.1-3ubuntu3_s390x.deb ... 152s Unpacking libavcodec61:s390x (7:7.1-3ubuntu3) ... 152s Selecting previously unselected package libudfread0:s390x. 152s Preparing to unpack .../074-libudfread0_1.1.2-1build1_s390x.deb ... 152s Unpacking libudfread0:s390x (1.1.2-1build1) ... 152s Selecting previously unselected package libbluray2:s390x. 152s Preparing to unpack .../075-libbluray2_1%3a1.3.4-1build1_s390x.deb ... 152s Unpacking libbluray2:s390x (1:1.3.4-1build1) ... 152s Selecting previously unselected package libchromaprint1:s390x. 152s Preparing to unpack .../076-libchromaprint1_1.5.1-7_s390x.deb ... 152s Unpacking libchromaprint1:s390x (1.5.1-7) ... 152s Selecting previously unselected package libdvdread8t64:s390x. 152s Preparing to unpack .../077-libdvdread8t64_6.1.3-2_s390x.deb ... 152s Unpacking libdvdread8t64:s390x (6.1.3-2) ... 152s Selecting previously unselected package libdvdnav4:s390x. 152s Preparing to unpack .../078-libdvdnav4_6.1.1-3build1_s390x.deb ... 152s Unpacking libdvdnav4:s390x (6.1.1-3build1) ... 152s Selecting previously unselected package libgme0:s390x. 152s Preparing to unpack .../079-libgme0_0.6.3-7build1_s390x.deb ... 152s Unpacking libgme0:s390x (0.6.3-7build1) ... 152s Selecting previously unselected package libmpg123-0t64:s390x. 152s Preparing to unpack .../080-libmpg123-0t64_1.32.10-1_s390x.deb ... 152s Unpacking libmpg123-0t64:s390x (1.32.10-1) ... 152s Selecting previously unselected package libvorbisfile3:s390x. 152s Preparing to unpack .../081-libvorbisfile3_1.3.7-2_s390x.deb ... 152s Unpacking libvorbisfile3:s390x (1.3.7-2) ... 152s Selecting previously unselected package libopenmpt0t64:s390x. 152s Preparing to unpack .../082-libopenmpt0t64_0.7.13-1_s390x.deb ... 152s Unpacking libopenmpt0t64:s390x (0.7.13-1) ... 152s Selecting previously unselected package librabbitmq4:s390x. 152s Preparing to unpack .../083-librabbitmq4_0.15.0-1_s390x.deb ... 152s Unpacking librabbitmq4:s390x (0.15.0-1) ... 152s Selecting previously unselected package libcjson1:s390x. 152s Preparing to unpack .../084-libcjson1_1.7.18-3_s390x.deb ... 152s Unpacking libcjson1:s390x (1.7.18-3) ... 152s Selecting previously unselected package libmbedcrypto16:s390x. 152s Preparing to unpack .../085-libmbedcrypto16_3.6.2-3ubuntu1_s390x.deb ... 152s Unpacking libmbedcrypto16:s390x (3.6.2-3ubuntu1) ... 152s Selecting previously unselected package librist4:s390x. 152s Preparing to unpack .../086-librist4_0.2.11+dfsg-1_s390x.deb ... 152s Unpacking librist4:s390x (0.2.11+dfsg-1) ... 152s Selecting previously unselected package libsrt1.5-gnutls:s390x. 152s Preparing to unpack .../087-libsrt1.5-gnutls_1.5.4-1_s390x.deb ... 152s Unpacking libsrt1.5-gnutls:s390x (1.5.4-1) ... 152s Selecting previously unselected package libssh-4:s390x. 152s Preparing to unpack .../088-libssh-4_0.11.1-1_s390x.deb ... 152s Unpacking libssh-4:s390x (0.11.1-1) ... 152s Selecting previously unselected package libnorm1t64:s390x. 152s Preparing to unpack .../089-libnorm1t64_1.5.9+dfsg-3.1build1_s390x.deb ... 152s Unpacking libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 152s Selecting previously unselected package libpgm-5.3-0t64:s390x. 152s Preparing to unpack .../090-libpgm-5.3-0t64_5.3.128~dfsg-2.1build1_s390x.deb ... 152s Unpacking libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 152s Selecting previously unselected package libsodium23:s390x. 152s Preparing to unpack .../091-libsodium23_1.0.18-1build3_s390x.deb ... 152s Unpacking libsodium23:s390x (1.0.18-1build3) ... 152s Selecting previously unselected package libzmq5:s390x. 152s Preparing to unpack .../092-libzmq5_4.3.5-1build2_s390x.deb ... 152s Unpacking libzmq5:s390x (4.3.5-1build2) ... 152s Selecting previously unselected package libavformat61:s390x. 152s Preparing to unpack .../093-libavformat61_7%3a7.1-3ubuntu3_s390x.deb ... 152s Unpacking libavformat61:s390x (7:7.1-3ubuntu3) ... 152s Selecting previously unselected package libbs2b0:s390x. 152s Preparing to unpack .../094-libbs2b0_3.1.0+dfsg-8_s390x.deb ... 152s Unpacking libbs2b0:s390x (3.1.0+dfsg-8) ... 152s Selecting previously unselected package libflite1:s390x. 152s Preparing to unpack .../095-libflite1_2.2-7_s390x.deb ... 152s Unpacking libflite1:s390x (2.2-7) ... 152s Selecting previously unselected package libserd-0-0:s390x. 152s Preparing to unpack .../096-libserd-0-0_0.32.4-1_s390x.deb ... 152s Unpacking libserd-0-0:s390x (0.32.4-1) ... 152s Selecting previously unselected package libzix-0-0:s390x. 152s Preparing to unpack .../097-libzix-0-0_0.6.2-1_s390x.deb ... 152s Unpacking libzix-0-0:s390x (0.6.2-1) ... 152s Selecting previously unselected package libsord-0-0:s390x. 152s Preparing to unpack .../098-libsord-0-0_0.16.18-1_s390x.deb ... 152s Unpacking libsord-0-0:s390x (0.16.18-1) ... 152s Selecting previously unselected package libsratom-0-0:s390x. 152s Preparing to unpack .../099-libsratom-0-0_0.6.18-1_s390x.deb ... 152s Unpacking libsratom-0-0:s390x (0.6.18-1) ... 152s Selecting previously unselected package liblilv-0-0:s390x. 152s Preparing to unpack .../100-liblilv-0-0_0.24.26-1_s390x.deb ... 152s Unpacking liblilv-0-0:s390x (0.24.26-1) ... 152s Selecting previously unselected package libmysofa1:s390x. 152s Preparing to unpack .../101-libmysofa1_1.3.2+dfsg-2ubuntu2_s390x.deb ... 152s Unpacking libmysofa1:s390x (1.3.2+dfsg-2ubuntu2) ... 152s Selecting previously unselected package libvulkan1:s390x. 152s Preparing to unpack .../102-libvulkan1_1.4.304.0-1_s390x.deb ... 152s Unpacking libvulkan1:s390x (1.4.304.0-1) ... 152s Selecting previously unselected package libplacebo349:s390x. 152s Preparing to unpack .../103-libplacebo349_7.349.0-3_s390x.deb ... 152s Unpacking libplacebo349:s390x (7.349.0-3) ... 153s Selecting previously unselected package libpostproc58:s390x. 153s Preparing to unpack .../104-libpostproc58_7%3a7.1-3ubuntu3_s390x.deb ... 153s Unpacking libpostproc58:s390x (7:7.1-3ubuntu3) ... 153s Selecting previously unselected package libfftw3-double3:s390x. 153s Preparing to unpack .../105-libfftw3-double3_3.3.10-2fakesync1build1_s390x.deb ... 153s Unpacking libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 153s Selecting previously unselected package libsamplerate0:s390x. 153s Preparing to unpack .../106-libsamplerate0_0.2.2-4build1_s390x.deb ... 153s Unpacking libsamplerate0:s390x (0.2.2-4build1) ... 153s Selecting previously unselected package librubberband2:s390x. 153s Preparing to unpack .../107-librubberband2_3.3.0+dfsg-2build2_s390x.deb ... 153s Unpacking librubberband2:s390x (3.3.0+dfsg-2build2) ... 153s Selecting previously unselected package libswscale8:s390x. 153s Preparing to unpack .../108-libswscale8_7%3a7.1-3ubuntu3_s390x.deb ... 153s Unpacking libswscale8:s390x (7:7.1-3ubuntu3) ... 153s Selecting previously unselected package libvidstab1.1:s390x. 153s Preparing to unpack .../109-libvidstab1.1_1.1.0-2build1_s390x.deb ... 153s Unpacking libvidstab1.1:s390x (1.1.0-2build1) ... 153s Selecting previously unselected package libzimg2:s390x. 153s Preparing to unpack .../110-libzimg2_3.0.5+ds1-1build1_s390x.deb ... 153s Unpacking libzimg2:s390x (3.0.5+ds1-1build1) ... 153s Selecting previously unselected package libavfilter10:s390x. 153s Preparing to unpack .../111-libavfilter10_7%3a7.1-3ubuntu3_s390x.deb ... 153s Unpacking libavfilter10:s390x (7:7.1-3ubuntu3) ... 153s Selecting previously unselected package libblas3:s390x. 153s Preparing to unpack .../112-libblas3_3.12.1-2_s390x.deb ... 153s Unpacking libblas3:s390x (3.12.1-2) ... 153s Selecting previously unselected package libgfortran5:s390x. 153s Preparing to unpack .../113-libgfortran5_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking libgfortran5:s390x (14.2.0-17ubuntu1) ... 153s Selecting previously unselected package x11-common. 153s Preparing to unpack .../114-x11-common_1%3a7.7+23ubuntu3_all.deb ... 153s Unpacking x11-common (1:7.7+23ubuntu3) ... 153s Selecting previously unselected package libice6:s390x. 153s Preparing to unpack .../115-libice6_2%3a1.1.1-1_s390x.deb ... 153s Unpacking libice6:s390x (2:1.1.1-1) ... 153s Selecting previously unselected package liblapack3:s390x. 153s Preparing to unpack .../116-liblapack3_3.12.1-2_s390x.deb ... 153s Unpacking liblapack3:s390x (3.12.1-2) ... 153s Selecting previously unselected package libpaper2:s390x. 153s Preparing to unpack .../117-libpaper2_2.2.5-0.3_s390x.deb ... 153s Unpacking libpaper2:s390x (2.2.5-0.3) ... 153s Selecting previously unselected package libpaper-utils. 153s Preparing to unpack .../118-libpaper-utils_2.2.5-0.3_s390x.deb ... 153s Unpacking libpaper-utils (2.2.5-0.3) ... 153s Selecting previously unselected package libsm6:s390x. 153s Preparing to unpack .../119-libsm6_2%3a1.2.4-1_s390x.deb ... 153s Unpacking libsm6:s390x (2:1.2.4-1) ... 153s Selecting previously unselected package libtcl8.6:s390x. 153s Preparing to unpack .../120-libtcl8.6_8.6.16+dfsg-1_s390x.deb ... 153s Unpacking libtcl8.6:s390x (8.6.16+dfsg-1) ... 153s Selecting previously unselected package libxft2:s390x. 153s Preparing to unpack .../121-libxft2_2.3.6-1build1_s390x.deb ... 153s Unpacking libxft2:s390x (2.3.6-1build1) ... 153s Selecting previously unselected package libxss1:s390x. 153s Preparing to unpack .../122-libxss1_1%3a1.2.3-1build3_s390x.deb ... 153s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 153s Selecting previously unselected package libtk8.6:s390x. 153s Preparing to unpack .../123-libtk8.6_8.6.16-1_s390x.deb ... 153s Unpacking libtk8.6:s390x (8.6.16-1) ... 153s Selecting previously unselected package libxt6t64:s390x. 153s Preparing to unpack .../124-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 153s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 153s Selecting previously unselected package zip. 153s Preparing to unpack .../125-zip_3.0-14ubuntu2_s390x.deb ... 153s Unpacking zip (3.0-14ubuntu2) ... 153s Selecting previously unselected package unzip. 153s Preparing to unpack .../126-unzip_6.0-28ubuntu6_s390x.deb ... 153s Unpacking unzip (6.0-28ubuntu6) ... 153s Selecting previously unselected package xdg-utils. 153s Preparing to unpack .../127-xdg-utils_1.2.1-2ubuntu1_all.deb ... 153s Unpacking xdg-utils (1.2.1-2ubuntu1) ... 153s Selecting previously unselected package r-base-core. 153s Preparing to unpack .../128-r-base-core_4.4.2-1build1_s390x.deb ... 153s Unpacking r-base-core (4.4.2-1build1) ... 153s Selecting previously unselected package r-cran-av. 153s Preparing to unpack .../129-r-cran-av_0.9.0+dfsg-1build1_s390x.deb ... 153s Unpacking r-cran-av (0.9.0+dfsg-1build1) ... 153s Selecting previously unselected package r-cran-brio. 153s Preparing to unpack .../130-r-cran-brio_1.1.5-1_s390x.deb ... 153s Unpacking r-cran-brio (1.1.5-1) ... 153s Selecting previously unselected package r-cran-ps. 153s Preparing to unpack .../131-r-cran-ps_1.8.1-1_s390x.deb ... 153s Unpacking r-cran-ps (1.8.1-1) ... 153s Selecting previously unselected package r-cran-r6. 153s Preparing to unpack .../132-r-cran-r6_2.5.1-1_all.deb ... 153s Unpacking r-cran-r6 (2.5.1-1) ... 153s Selecting previously unselected package r-cran-processx. 153s Preparing to unpack .../133-r-cran-processx_3.8.5-1_s390x.deb ... 153s Unpacking r-cran-processx (3.8.5-1) ... 153s Selecting previously unselected package r-cran-callr. 153s Preparing to unpack .../134-r-cran-callr_3.7.6-1_all.deb ... 153s Unpacking r-cran-callr (3.7.6-1) ... 153s Selecting previously unselected package r-cran-cli. 153s Preparing to unpack .../135-r-cran-cli_3.6.3-1_s390x.deb ... 153s Unpacking r-cran-cli (3.6.3-1) ... 153s Selecting previously unselected package r-cran-colorspace. 153s Preparing to unpack .../136-r-cran-colorspace_2.1-1+dfsg-1_s390x.deb ... 153s Unpacking r-cran-colorspace (2.1-1+dfsg-1) ... 153s Selecting previously unselected package r-cran-crayon. 153s Preparing to unpack .../137-r-cran-crayon_1.5.3-1_all.deb ... 153s Unpacking r-cran-crayon (1.5.3-1) ... 153s Selecting previously unselected package r-cran-desc. 153s Preparing to unpack .../138-r-cran-desc_1.4.3-1_all.deb ... 153s Unpacking r-cran-desc (1.4.3-1) ... 153s Selecting previously unselected package r-cran-diffobj. 153s Preparing to unpack .../139-r-cran-diffobj_0.3.5-1_s390x.deb ... 153s Unpacking r-cran-diffobj (0.3.5-1) ... 153s Selecting previously unselected package r-cran-digest. 153s Preparing to unpack .../140-r-cran-digest_0.6.37-1_s390x.deb ... 153s Unpacking r-cran-digest (0.6.37-1) ... 153s Selecting previously unselected package r-cran-evaluate. 153s Preparing to unpack .../141-r-cran-evaluate_1.0.3-1_all.deb ... 153s Unpacking r-cran-evaluate (1.0.3-1) ... 153s Selecting previously unselected package r-cran-fansi. 153s Preparing to unpack .../142-r-cran-fansi_1.0.5-1_s390x.deb ... 153s Unpacking r-cran-fansi (1.0.5-1) ... 153s Selecting previously unselected package r-cran-farver. 153s Preparing to unpack .../143-r-cran-farver_2.1.2-1_s390x.deb ... 153s Unpacking r-cran-farver (2.1.2-1) ... 154s Selecting previously unselected package r-cran-fs. 154s Preparing to unpack .../144-r-cran-fs_1.6.5+dfsg-1_s390x.deb ... 154s Unpacking r-cran-fs (1.6.5+dfsg-1) ... 154s Selecting previously unselected package r-cran-glue. 154s Preparing to unpack .../145-r-cran-glue_1.8.0-1_s390x.deb ... 154s Unpacking r-cran-glue (1.8.0-1) ... 154s Selecting previously unselected package r-cran-rlang. 154s Preparing to unpack .../146-r-cran-rlang_1.1.5-1_s390x.deb ... 154s Unpacking r-cran-rlang (1.1.5-1) ... 154s Selecting previously unselected package r-cran-lifecycle. 154s Preparing to unpack .../147-r-cran-lifecycle_1.0.4+dfsg-1_all.deb ... 154s Unpacking r-cran-lifecycle (1.0.4+dfsg-1) ... 154s Selecting previously unselected package r-cran-gtable. 154s Preparing to unpack .../148-r-cran-gtable_0.3.6+dfsg-1_all.deb ... 154s Unpacking r-cran-gtable (0.3.6+dfsg-1) ... 154s Selecting previously unselected package r-cran-isoband. 154s Preparing to unpack .../149-r-cran-isoband_0.2.7-1_s390x.deb ... 154s Unpacking r-cran-isoband (0.2.7-1) ... 154s Selecting previously unselected package r-cran-mass. 154s Preparing to unpack .../150-r-cran-mass_7.3-64-1_s390x.deb ... 154s Unpacking r-cran-mass (7.3-64-1) ... 154s Selecting previously unselected package r-cran-lattice. 154s Preparing to unpack .../151-r-cran-lattice_0.22-6-1_s390x.deb ... 154s Unpacking r-cran-lattice (0.22-6-1) ... 154s Selecting previously unselected package r-cran-nlme. 154s Preparing to unpack .../152-r-cran-nlme_3.1.167-1_s390x.deb ... 154s Unpacking r-cran-nlme (3.1.167-1) ... 154s Selecting previously unselected package r-cran-matrix. 154s Preparing to unpack .../153-r-cran-matrix_1.7-2-1_s390x.deb ... 154s Unpacking r-cran-matrix (1.7-2-1) ... 154s Selecting previously unselected package r-cran-mgcv. 154s Preparing to unpack .../154-r-cran-mgcv_1.9-1-1_s390x.deb ... 154s Unpacking r-cran-mgcv (1.9-1-1) ... 154s Selecting previously unselected package r-cran-labeling. 154s Preparing to unpack .../155-r-cran-labeling_0.4.3-1_all.deb ... 154s Unpacking r-cran-labeling (0.4.3-1) ... 154s Selecting previously unselected package r-cran-munsell. 154s Preparing to unpack .../156-r-cran-munsell_0.5.1-1_all.deb ... 154s Unpacking r-cran-munsell (0.5.1-1) ... 154s Selecting previously unselected package r-cran-rcolorbrewer. 154s Preparing to unpack .../157-r-cran-rcolorbrewer_1.1-3-1build1_all.deb ... 154s Unpacking r-cran-rcolorbrewer (1.1-3-1build1) ... 154s Selecting previously unselected package r-cran-viridislite. 154s Preparing to unpack .../158-r-cran-viridislite_0.4.2-2_all.deb ... 154s Unpacking r-cran-viridislite (0.4.2-2) ... 154s Selecting previously unselected package r-cran-scales. 154s Preparing to unpack .../159-r-cran-scales_1.3.0-1_all.deb ... 154s Unpacking r-cran-scales (1.3.0-1) ... 154s Selecting previously unselected package r-cran-magrittr. 154s Preparing to unpack .../160-r-cran-magrittr_2.0.3-1_s390x.deb ... 154s Unpacking r-cran-magrittr (2.0.3-1) ... 154s Selecting previously unselected package r-cran-utf8. 154s Preparing to unpack .../161-r-cran-utf8_1.2.4-1_s390x.deb ... 154s Unpacking r-cran-utf8 (1.2.4-1) ... 154s Selecting previously unselected package r-cran-vctrs. 154s Preparing to unpack .../162-r-cran-vctrs_0.6.5-1_s390x.deb ... 154s Unpacking r-cran-vctrs (0.6.5-1) ... 154s Selecting previously unselected package r-cran-pillar. 154s Preparing to unpack .../163-r-cran-pillar_1.10.1+dfsg-1_all.deb ... 154s Unpacking r-cran-pillar (1.10.1+dfsg-1) ... 154s Selecting previously unselected package r-cran-pkgconfig. 154s Preparing to unpack .../164-r-cran-pkgconfig_2.0.3-2build1_all.deb ... 154s Unpacking r-cran-pkgconfig (2.0.3-2build1) ... 154s Selecting previously unselected package r-cran-tibble. 154s Preparing to unpack .../165-r-cran-tibble_3.2.1+dfsg-3_s390x.deb ... 154s Unpacking r-cran-tibble (3.2.1+dfsg-3) ... 154s Selecting previously unselected package r-cran-withr. 154s Preparing to unpack .../166-r-cran-withr_3.0.2+dfsg-1_all.deb ... 154s Unpacking r-cran-withr (3.0.2+dfsg-1) ... 154s Selecting previously unselected package r-cran-ggplot2. 154s Preparing to unpack .../167-r-cran-ggplot2_3.5.1+dfsg-1_all.deb ... 154s Unpacking r-cran-ggplot2 (3.5.1+dfsg-1) ... 154s Selecting previously unselected package r-cran-jsonlite. 154s Preparing to unpack .../168-r-cran-jsonlite_1.8.9+dfsg-1_s390x.deb ... 154s Unpacking r-cran-jsonlite (1.8.9+dfsg-1) ... 154s Selecting previously unselected package r-cran-pkgbuild. 154s Preparing to unpack .../169-r-cran-pkgbuild_1.4.6-1_all.deb ... 154s Unpacking r-cran-pkgbuild (1.4.6-1) ... 154s Selecting previously unselected package r-cran-rprojroot. 154s Preparing to unpack .../170-r-cran-rprojroot_2.0.4-2_all.deb ... 154s Unpacking r-cran-rprojroot (2.0.4-2) ... 154s Selecting previously unselected package r-cran-pkgload. 154s Preparing to unpack .../171-r-cran-pkgload_1.4.0-1_all.deb ... 154s Unpacking r-cran-pkgload (1.4.0-1) ... 154s Selecting previously unselected package r-cran-praise. 154s Preparing to unpack .../172-r-cran-praise_1.0.0-4build1_all.deb ... 154s Unpacking r-cran-praise (1.0.0-4build1) ... 154s Selecting previously unselected package r-cran-waldo. 154s Preparing to unpack .../173-r-cran-waldo_0.6.1-2_all.deb ... 154s Unpacking r-cran-waldo (0.6.1-2) ... 154s Selecting previously unselected package r-cran-testthat. 154s Preparing to unpack .../174-r-cran-testthat_3.2.1.1-1_s390x.deb ... 154s Unpacking r-cran-testthat (3.2.1.1-1) ... 154s Setting up libgme0:s390x (0.6.3-7build1) ... 154s Setting up libchromaprint1:s390x (1.5.1-7) ... 154s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 154s Setting up libxcb-dri3-0:s390x (1.17.0-2) ... 154s Setting up liblcms2-2:s390x (2.16-2) ... 154s Setting up libpixman-1-0:s390x (0.44.0-3) ... 154s Setting up libdvdread8t64:s390x (6.1.3-2) ... 154s Setting up libudfread0:s390x (1.1.2-1build1) ... 154s Setting up libnorm1t64:s390x (1.5.9+dfsg-3.1build1) ... 154s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 154s Setting up libaom3:s390x (3.12.0-1) ... 154s Setting up libx11-xcb1:s390x (2:1.8.10-2) ... 154s Setting up librabbitmq4:s390x (0.15.0-1) ... 154s Setting up libsodium23:s390x (1.0.18-1build3) ... 154s Setting up libogg0:s390x (1.3.5-3build1) ... 154s Setting up libspeex1:s390x (1.2.1-3) ... 154s Setting up libshine3:s390x (3.1.1-2build1) ... 154s Setting up libx264-164:s390x (2:0.164.3108+git31e19f9-2build1) ... 154s Setting up libtwolame0:s390x (0.4.0-2build3) ... 154s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 154s Setting up libdatrie1:s390x (0.2.13-3build1) ... 154s Setting up libgsm1:s390x (1.0.22-1build1) ... 154s Setting up libxcb-render0:s390x (1.17.0-2) ... 154s Setting up libzix-0-0:s390x (0.6.2-1) ... 154s Setting up libcodec2-1.2:s390x (1.2.0-3) ... 154s Setting up unzip (6.0-28ubuntu6) ... 154s Setting up libgdk-pixbuf2.0-common (2.42.12+dfsg-2) ... 154s Setting up libmysofa1:s390x (1.3.2+dfsg-2ubuntu2) ... 154s Setting up x11-common (1:7.7+23ubuntu3) ... 154s Setting up libdeflate0:s390x (1.23-1) ... 154s Setting up libxcb-shm0:s390x (1.17.0-2) ... 154s Setting up libmpg123-0t64:s390x (1.32.10-1) ... 154s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 154s Setting up libcjson1:s390x (1.7.18-3) ... 154s Setting up libxvidcore4:s390x (2:1.3.7-1build1) ... 154s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 154s Setting up libsnappy1v5:s390x (1.2.1-1) ... 154s Setting up libasound2-data (1.2.13-1build1) ... 154s Setting up libpgm-5.3-0t64:s390x (5.3.128~dfsg-2.1build1) ... 154s Setting up libtheoraenc1:s390x (1.2.0~alpha1+dfsg-5) ... 154s Setting up zip (3.0-14ubuntu2) ... 154s Setting up libblas3:s390x (3.12.1-2) ... 154s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 154s Setting up libasound2t64:s390x (1.2.13-1build1) ... 154s Setting up libva2:s390x (2.22.0-2) ... 154s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 154s Setting up libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 154s Setting up libxfixes3:s390x (1:6.0.0-2build1) ... 154s Setting up libopus0:s390x (1.5.2-2) ... 154s Setting up fonts-dejavu-mono (2.37-8) ... 154s Setting up libvorbis0a:s390x (1.3.7-2) ... 154s Setting up libtcl8.6:s390x (8.6.16+dfsg-1) ... 154s Setting up fonts-dejavu-core (2.37-8) ... 155s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 155s Setting up libfftw3-double3:s390x (3.3.10-2fakesync1build1) ... 155s Setting up libssh-4:s390x (0.11.1-1) ... 155s Setting up libgfortran5:s390x (14.2.0-17ubuntu1) ... 155s Setting up libvulkan1:s390x (1.4.304.0-1) ... 155s Setting up libwebp7:s390x (1.5.0-0.1) ... 155s Setting up libvidstab1.1:s390x (1.1.0-2build1) ... 155s Setting up libvpx9:s390x (1.15.0-1ubuntu1) ... 155s Setting up libsrt1.5-gnutls:s390x (1.5.4-1) ... 155s Setting up libflite1:s390x (2.2-7) ... 155s Setting up libdav1d7:s390x (1.5.1-1) ... 155s Setting up libva-drm2:s390x (2.22.0-2) ... 155s Setting up ocl-icd-libopencl1:s390x (2.3.2-1build1) ... 155s Setting up libvdpau1:s390x (1.5-3) ... 155s Setting up libbs2b0:s390x (3.1.0+dfsg-8) ... 155s Setting up librav1e0.7:s390x (0.7.1-9) ... 155s Setting up libzimg2:s390x (3.0.5+ds1-1build1) ... 155s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 155s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 155s Setting up libthai-data (0.1.29-2build1) ... 155s Setting up libunibreak6:s390x (6.1-2) ... 155s Setting up libxss1:s390x (1:1.2.3-1build3) ... 155s Setting up libmbedcrypto16:s390x (3.6.2-3ubuntu1) ... 155s Setting up libpaper2:s390x (2.2.5-0.3) ... 155s Setting up libx265-215:s390x (4.1-2) ... 155s Setting up libsamplerate0:s390x (0.2.2-4build1) ... 155s Setting up libva-x11-2:s390x (2.22.0-2) ... 155s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 155s Setting up libjxl0.11:s390x (0.11.1-1) ... 155s Setting up xdg-utils (1.2.1-2ubuntu1) ... 155s update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode 155s Setting up libzvbi-common (0.2.43-2ubuntu1) ... 155s Setting up libmp3lame0:s390x (3.100-6build1) ... 155s Setting up libvorbisenc2:s390x (1.3.7-2) ... 155s Setting up libdvdnav4:s390x (6.1.1-3build1) ... 155s Setting up libserd-0-0:s390x (0.32.4-1) ... 155s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 155s Setting up libice6:s390x (2:1.1.1-1) ... 155s Setting up liblapack3:s390x (3.12.1-2) ... 155s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode 155s Setting up libzmq5:s390x (4.3.5-1build2) ... 155s Setting up libzvbi0t64:s390x (0.2.43-2ubuntu1) ... 155s Setting up libsoxr0:s390x (0.1.3-4build3) ... 155s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 155s Setting up libpaper-utils (2.2.5-0.3) ... 155s Setting up libavutil59:s390x (7:7.1-3ubuntu3) ... 155s Setting up libpostproc58:s390x (7:7.1-3ubuntu3) ... 155s Setting up librist4:s390x (0.2.11+dfsg-1) ... 155s Setting up libthai0:s390x (0.1.29-2build1) ... 155s Setting up libvorbisfile3:s390x (1.3.7-2) ... 155s Setting up libswresample5:s390x (7:7.1-3ubuntu3) ... 155s Setting up libswscale8:s390x (7:7.1-3ubuntu3) ... 155s Setting up libplacebo349:s390x (7.349.0-3) ... 155s Setting up librubberband2:s390x (3.3.0+dfsg-2build2) ... 155s Setting up libsord-0-0:s390x (0.16.18-1) ... 155s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 155s Setting up libsratom-0-0:s390x (0.6.18-1) ... 155s Setting up libgdk-pixbuf-2.0-0:s390x (2.42.12+dfsg-2) ... 155s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 155s Setting up libbluray2:s390x (1:1.3.4-1build1) ... 155s Setting up libsm6:s390x (2:1.2.4-1) ... 155s Setting up liblilv-0-0:s390x (0.24.26-1) ... 155s Setting up libopenmpt0t64:s390x (0.7.13-1) ... 155s Setting up fontconfig (2.15.0-1.1ubuntu2) ... 157s Regenerating fonts cache... done. 157s Setting up libxft2:s390x (2.3.6-1build1) ... 157s Setting up libtk8.6:s390x (8.6.16-1) ... 157s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 157s Setting up libcairo2:s390x (1.18.2-2) ... 157s Setting up libass9:s390x (1:0.17.3-1) ... 157s Setting up libtheoradec1:s390x (1.2.0~alpha1+dfsg-5) ... 157s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 157s Setting up libcairo-gobject2:s390x (1.18.2-2) ... 157s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 157s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 157s Setting up librsvg2-2:s390x (2.59.90+dfsg-2) ... 157s Setting up r-base-core (4.4.2-1build1) ... 157s Creating config file /etc/R/Renviron with new version 157s Setting up r-cran-crayon (1.5.3-1) ... 157s Setting up r-cran-labeling (0.4.3-1) ... 157s Setting up libavcodec61:s390x (7:7.1-3ubuntu3) ... 157s Setting up r-cran-lattice (0.22-6-1) ... 157s Setting up r-cran-ps (1.8.1-1) ... 157s Setting up r-cran-nlme (3.1.167-1) ... 157s Setting up r-cran-farver (2.1.2-1) ... 157s Setting up r-cran-viridislite (0.4.2-2) ... 157s Setting up r-cran-r6 (2.5.1-1) ... 157s Setting up r-cran-magrittr (2.0.3-1) ... 157s Setting up r-cran-fs (1.6.5+dfsg-1) ... 157s Setting up r-cran-brio (1.1.5-1) ... 157s Setting up r-cran-diffobj (0.3.5-1) ... 157s Setting up r-cran-rlang (1.1.5-1) ... 157s Setting up r-cran-withr (3.0.2+dfsg-1) ... 157s Setting up r-cran-processx (3.8.5-1) ... 157s Setting up r-cran-praise (1.0.0-4build1) ... 157s Setting up r-cran-digest (0.6.37-1) ... 157s Setting up r-cran-evaluate (1.0.3-1) ... 157s Setting up r-cran-fansi (1.0.5-1) ... 157s Setting up r-cran-mass (7.3-64-1) ... 157s Setting up r-cran-glue (1.8.0-1) ... 157s Setting up r-cran-cli (3.6.3-1) ... 157s Setting up r-cran-lifecycle (1.0.4+dfsg-1) ... 157s Setting up r-cran-rprojroot (2.0.4-2) ... 157s Setting up libavformat61:s390x (7:7.1-3ubuntu3) ... 157s Setting up r-cran-jsonlite (1.8.9+dfsg-1) ... 157s Setting up r-cran-pkgconfig (2.0.3-2build1) ... 157s Setting up r-cran-utf8 (1.2.4-1) ... 157s Setting up r-cran-colorspace (2.1-1+dfsg-1) ... 157s Setting up r-cran-rcolorbrewer (1.1-3-1build1) ... 157s Setting up r-cran-isoband (0.2.7-1) ... 157s Setting up r-cran-waldo (0.6.1-2) ... 157s Setting up r-cran-gtable (0.3.6+dfsg-1) ... 157s Setting up libavfilter10:s390x (7:7.1-3ubuntu3) ... 157s Setting up r-cran-matrix (1.7-2-1) ... 157s Setting up r-cran-mgcv (1.9-1-1) ... 157s Setting up r-cran-vctrs (0.6.5-1) ... 157s Setting up r-cran-pillar (1.10.1+dfsg-1) ... 157s Setting up r-cran-callr (3.7.6-1) ... 157s Setting up r-cran-desc (1.4.3-1) ... 157s Setting up r-cran-munsell (0.5.1-1) ... 157s Setting up r-cran-tibble (3.2.1+dfsg-3) ... 157s Setting up r-cran-av (0.9.0+dfsg-1build1) ... 157s Setting up r-cran-scales (1.3.0-1) ... 157s Setting up r-cran-pkgbuild (1.4.6-1) ... 157s Setting up r-cran-pkgload (1.4.0-1) ... 157s Setting up r-cran-ggplot2 (3.5.1+dfsg-1) ... 157s Setting up r-cran-testthat (3.2.1.1-1) ... 157s Processing triggers for libc-bin (2.41-1ubuntu1) ... 157s Processing triggers for man-db (2.13.0-1) ... 158s Processing triggers for install-info (7.1.1-1) ... 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'r-cran-av'], kind short, sout pipe, serr pipe, env [] 158s autopkgtest: DBG: testbed command exited with code 0 158s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.kbiIQP/run-unit-test-packages.all"], kind short, sout raw, serr pipe, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.kbiIQP/run-unit-test-packages.all /tmp/autopkgtest-work.k41681sz/out/run-unit-test-packages.all 159s autopkgtest: DBG: got reply from testbed: ok 159s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.kbiIQP/build.7Su/src'], kind short, sout raw, serr raw, env [] 159s autopkgtest: DBG: testbed command exited with code 0 159s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.kbiIQP/build.7Su/src already exists 159s autopkgtest [02:12:18]: test run-unit-test: [----------------------- 159s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.kbiIQP/wrapper.sh --debug --artifacts=/tmp/autopkgtest.kbiIQP/run-unit-test-artifacts --chdir=/tmp/autopkgtest.kbiIQP/build.7Su/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.kbiIQP/run-unit-test-stderr --stdout=/tmp/autopkgtest.kbiIQP/run-unit-test-stdout --tmp=/tmp/autopkgtest.kbiIQP/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' --make-executable=/tmp/autopkgtest.kbiIQP/build.7Su/src/debian/tests/run-unit-test -- /tmp/autopkgtest.kbiIQP/build.7Su/src/debian/tests/run-unit-test"], kind test, sout raw, serr raw, env [] 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.kbiIQP/run-unit-test-artifacts 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: changing to directory: /tmp/autopkgtest.kbiIQP/build.7Su/src 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: setting environment: LANG=C.UTF-8 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LANGUAGE 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_ADDRESS 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_ALL 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_COLLATE 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_CTYPE 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_IDENTIFICATION 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_MEASUREMENT 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_MESSAGES 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_MONETARY 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_NAME 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_NUMERIC 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_PAPER 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_TELEPHONE 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_TIME 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: pretending to be a login shell 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: will write standard error to /tmp/autopkgtest.kbiIQP/run-unit-test-stderr 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: will write stdout to /tmp/autopkgtest.kbiIQP/run-unit-test-stdout 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.kbiIQP/autopkgtest_tmp 159s /tmp/autopkgtest.kbiIQP/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 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: marking as executable: /tmp/autopkgtest.kbiIQP/build.7Su/src/debian/tests/run-unit-test 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: command to run: /tmp/autopkgtest.kbiIQP/build.7Su/src/debian/tests/run-unit-test 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: copying /tmp/tmp.BG1yESrgAA/out to stdout and file: /tmp/autopkgtest.kbiIQP/run-unit-test-stdout 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: copying /tmp/tmp.BG1yESrgAA/err to standard error and file: /tmp/autopkgtest.kbiIQP/run-unit-test-stdout 159s /tmp/autopkgtest.kbiIQP/wrapper.sh: writing script pid 3446 to /tmp/autopkgtest_script_pid 159s BEGIN TEST testthat.R 159s 159s R version 4.4.2 (2024-10-31) -- "Pile of Leaves" 159s Copyright (C) 2024 The R Foundation for Statistical Computing 159s Platform: s390x-ibm-linux-gnu 159s 159s R is free software and comes with ABSOLUTELY NO WARRANTY. 159s You are welcome to redistribute it under certain conditions. 159s Type 'license()' or 'licence()' for distribution details. 159s 159s R is a collaborative project with many contributors. 159s Type 'contributors()' for more information and 159s 'citation()' on how to cite R or R packages in publications. 159s 159s Type 'demo()' for some demos, 'help()' for on-line help, or 159s 'help.start()' for an HTML browser interface to help. 159s Type 'q()' to quit R. 159s 159s > library(testthat) 159s > library(av) 159s > 159s > if (ps::ps_is_supported()) { 159s + # This sometimes has false positives on MacOS https://github.com/r-lib/ps/issues/90 159s + reporter <- ps::CleanupReporter(testthat::CheckReporter)$new(proc_cleanup = FALSE, proc_fail = FALSE, conn_fail = FALSE) 159s + test_check("av", reporter = reporter) 159s + } else { 159s + test_check("av") 159s + } 191s [ FAIL 0 | WARN 27 | SKIP 0 | PASS 123 ] 191s 191s [ FAIL 0 | WARN 27 | SKIP 0 | PASS 123 ] 191s > 191s /tmp/autopkgtest.kbiIQP/wrapper.sh: checking for leaked background processes... 191s /tmp/autopkgtest.kbiIQP/wrapper.sh: waiting for tee/cat subprocesses... 191s /tmp/autopkgtest.kbiIQP/wrapper.sh: cleaning up... 191s /tmp/autopkgtest.kbiIQP/wrapper.sh: Exit status: 0 191s autopkgtest: DBG: testbed command exited with code 0 191s autopkgtest [02:12:50]: test run-unit-test: -----------------------] 191s autopkgtest: DBG: testbed executing test finished with exit status 0 191s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.kbiIQP/run-unit-test-stdout /tmp/autopkgtest-work.k41681sz/out/run-unit-test-stdout 191s autopkgtest: DBG: got reply from testbed: ok 191s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.kbiIQP/run-unit-test-stderr /tmp/autopkgtest-work.k41681sz/out/run-unit-test-stderr 191s autopkgtest: DBG: got reply from testbed: ok 192s run-unit-test PASS 192s autopkgtest [02:12:51]: test run-unit-test: - - - - - - - - - - results - - - - - - - - - - 192s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.kbiIQP/run-unit-test-artifacts/ /tmp/autopkgtest-work.k41681sz/out/artifacts/ 192s autopkgtest: DBG: got reply from testbed: ok 192s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.kbiIQP/run-unit-test-artifacts', '/tmp/autopkgtest.kbiIQP/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 192s autopkgtest: DBG: testbed command exited with code 0 192s autopkgtest [02:12:51]: test pkg-r-autopkgtest: preparing testbed 192s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['r-cran-av', 'r-cran-testthat', 'r-cran-ps', 'r-cran-ggplot2'], deps_new=['r-cran-av', 'r-cran-testthat', 'r-cran-ps', 'r-cran-ggplot2', 'pkg-r-autopkgtest'] 192s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 192s autopkgtest: DBG: install_deps: deps_new=['r-cran-av', 'r-cran-testthat', 'r-cran-ps', 'r-cran-ggplot2', 'pkg-r-autopkgtest'] 192s autopkgtest: DBG: install-deps: satisfying r-cran-av, r-cran-testthat, r-cran-ps, r-cran-ggplot2, pkg-r-autopkgtest 192s autopkgtest: DBG: can use apt-get on testbed: True 192s 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', 'r-cran-av, r-cran-testthat, r-cran-ps, r-cran-ggplot2, pkg-r-autopkgtest'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 192s Reading package lists... 192s Building dependency tree... 192s Reading state information... 192s Starting pkgProblemResolver with broken count: 0 193s Starting 2 pkgProblemResolver with broken count: 0 193s Done 193s The following NEW packages will be installed: 193s build-essential cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu 193s dctrl-tools g++ g++-14 g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 193s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gfortran gfortran-14 193s gfortran-14-s390x-linux-gnu gfortran-s390x-linux-gnu icu-devtools libasan8 193s libblas-dev libbz2-dev libcc1-0 libdeflate-dev libgcc-14-dev 193s libgfortran-14-dev libicu-dev libisl23 libitm1 libjpeg-dev 193s libjpeg-turbo8-dev libjpeg8-dev liblapack-dev liblzma-dev libmpc3 193s libncurses-dev libpcre2-16-0 libpcre2-32-0 libpcre2-dev libpcre2-posix3 193s libpkgconf3 libpng-dev libreadline-dev libstdc++-14-dev libtirpc-dev 193s libubsan1 pkg-r-autopkgtest pkgconf pkgconf-bin r-base-dev zlib1g-dev 193s 0 upgraded, 51 newly installed, 0 to remove and 0 not upgraded. 193s Need to get 82.2 MB of archives. 193s After this operation, 278 MB of additional disk space will be used. 193s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 193s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 193s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 194s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 194s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 194s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 194s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-17ubuntu1 [50.7 kB] 194s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-17ubuntu1 [30.9 kB] 194s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-17ubuntu1 [2964 kB] 195s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-17ubuntu1 [1184 kB] 195s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 195s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 195s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 195s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 195s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 195s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 196s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 196s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 196s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 196s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 196s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 196s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x dctrl-tools s390x 2.24-3build3 [106 kB] 196s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran-14-dev s390x 14.2.0-17ubuntu1 [654 kB] 196s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gfortran-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [10.3 MB] 196s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x gfortran-14 s390x 14.2.0-17ubuntu1 [13.6 kB] 196s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x gfortran-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1012 B] 196s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x gfortran s390x 4:14.2.0-1ubuntu1 [1160 B] 196s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x icu-devtools s390x 76.1-1ubuntu2 [225 kB] 196s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libblas-dev s390x 3.12.1-2 [254 kB] 196s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libbz2-dev s390x 1.0.8-6 [39.1 kB] 196s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate-dev s390x 1.23-1 [52.2 kB] 196s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libicu-dev s390x 76.1-1ubuntu2 [12.2 MB] 196s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8-dev s390x 2.1.5-3ubuntu2 [281 kB] 196s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8-dev s390x 8c-2ubuntu11 [1484 B] 196s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-dev s390x 8c-2ubuntu11 [1484 B] 196s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack-dev s390x 3.12.1-2 [5967 kB] 197s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libncurses-dev s390x 6.5+20250125-2 [407 kB] 197s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 197s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-32-0 s390x 10.42-4ubuntu3 [221 kB] 197s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-posix3 s390x 10.42-4ubuntu3 [6820 B] 197s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-dev s390x 10.42-4ubuntu3 [815 kB] 197s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 197s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 197s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libpng-dev s390x 1.6.46-4 [283 kB] 197s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libreadline-dev s390x 8.2-6 [187 kB] 197s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x liblzma-dev s390x 5.6.3-1 [183 kB] 197s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 197s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 197s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libtirpc-dev s390x 1.3.4+ds-1.3 [196 kB] 197s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x r-base-dev all 4.4.2-1build1 [4342 B] 197s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x pkg-r-autopkgtest all 20231212ubuntu1 [6448 B] 197s Fetched 82.2 MB in 4s (20.3 MB/s) 197s Selecting previously unselected package libisl23:s390x. 197s (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 ... 63705 files and directories currently installed.) 197s Preparing to unpack .../00-libisl23_0.27-1_s390x.deb ... 197s Unpacking libisl23:s390x (0.27-1) ... 197s Selecting previously unselected package libmpc3:s390x. 197s Preparing to unpack .../01-libmpc3_1.3.1-1build2_s390x.deb ... 197s Unpacking libmpc3:s390x (1.3.1-1build2) ... 197s Selecting previously unselected package cpp-14-s390x-linux-gnu. 197s Preparing to unpack .../02-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 197s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 197s Selecting previously unselected package cpp-14. 197s Preparing to unpack .../03-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 197s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 197s Selecting previously unselected package cpp-s390x-linux-gnu. 197s Preparing to unpack .../04-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 197s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 197s Selecting previously unselected package cpp. 197s Preparing to unpack .../05-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 197s Unpacking cpp (4:14.2.0-1ubuntu1) ... 197s Selecting previously unselected package libcc1-0:s390x. 197s Preparing to unpack .../06-libcc1-0_14.2.0-17ubuntu1_s390x.deb ... 197s Unpacking libcc1-0:s390x (14.2.0-17ubuntu1) ... 197s Selecting previously unselected package libitm1:s390x. 197s Preparing to unpack .../07-libitm1_14.2.0-17ubuntu1_s390x.deb ... 197s Unpacking libitm1:s390x (14.2.0-17ubuntu1) ... 197s Selecting previously unselected package libasan8:s390x. 197s Preparing to unpack .../08-libasan8_14.2.0-17ubuntu1_s390x.deb ... 197s Unpacking libasan8:s390x (14.2.0-17ubuntu1) ... 197s Selecting previously unselected package libubsan1:s390x. 197s Preparing to unpack .../09-libubsan1_14.2.0-17ubuntu1_s390x.deb ... 197s Unpacking libubsan1:s390x (14.2.0-17ubuntu1) ... 198s Selecting previously unselected package libgcc-14-dev:s390x. 198s Preparing to unpack .../10-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 198s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 198s Selecting previously unselected package gcc-14-s390x-linux-gnu. 198s Preparing to unpack .../11-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 198s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 198s Selecting previously unselected package gcc-14. 198s Preparing to unpack .../12-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 198s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 198s Selecting previously unselected package gcc-s390x-linux-gnu. 198s Preparing to unpack .../13-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 198s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 198s Selecting previously unselected package gcc. 198s Preparing to unpack .../14-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 198s Unpacking gcc (4:14.2.0-1ubuntu1) ... 198s Selecting previously unselected package libstdc++-14-dev:s390x. 198s Preparing to unpack .../15-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 198s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 198s Selecting previously unselected package g++-14-s390x-linux-gnu. 198s Preparing to unpack .../16-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 198s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 198s Selecting previously unselected package g++-14. 198s Preparing to unpack .../17-g++-14_14.2.0-17ubuntu1_s390x.deb ... 198s Unpacking g++-14 (14.2.0-17ubuntu1) ... 198s Selecting previously unselected package g++-s390x-linux-gnu. 198s Preparing to unpack .../18-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 198s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 198s Selecting previously unselected package g++. 198s Preparing to unpack .../19-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 198s Unpacking g++ (4:14.2.0-1ubuntu1) ... 198s Selecting previously unselected package build-essential. 198s Preparing to unpack .../20-build-essential_12.10ubuntu1_s390x.deb ... 198s Unpacking build-essential (12.10ubuntu1) ... 198s Selecting previously unselected package dctrl-tools. 198s Preparing to unpack .../21-dctrl-tools_2.24-3build3_s390x.deb ... 198s Unpacking dctrl-tools (2.24-3build3) ... 198s Selecting previously unselected package libgfortran-14-dev:s390x. 198s Preparing to unpack .../22-libgfortran-14-dev_14.2.0-17ubuntu1_s390x.deb ... 198s Unpacking libgfortran-14-dev:s390x (14.2.0-17ubuntu1) ... 198s Selecting previously unselected package gfortran-14-s390x-linux-gnu. 198s Preparing to unpack .../23-gfortran-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 198s Unpacking gfortran-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 198s Selecting previously unselected package gfortran-14. 198s Preparing to unpack .../24-gfortran-14_14.2.0-17ubuntu1_s390x.deb ... 198s Unpacking gfortran-14 (14.2.0-17ubuntu1) ... 198s Selecting previously unselected package gfortran-s390x-linux-gnu. 198s Preparing to unpack .../25-gfortran-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 198s Unpacking gfortran-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 198s Selecting previously unselected package gfortran. 198s Preparing to unpack .../26-gfortran_4%3a14.2.0-1ubuntu1_s390x.deb ... 198s Unpacking gfortran (4:14.2.0-1ubuntu1) ... 198s Selecting previously unselected package icu-devtools. 198s Preparing to unpack .../27-icu-devtools_76.1-1ubuntu2_s390x.deb ... 198s Unpacking icu-devtools (76.1-1ubuntu2) ... 198s Selecting previously unselected package libblas-dev:s390x. 198s Preparing to unpack .../28-libblas-dev_3.12.1-2_s390x.deb ... 198s Unpacking libblas-dev:s390x (3.12.1-2) ... 198s Selecting previously unselected package libbz2-dev:s390x. 198s Preparing to unpack .../29-libbz2-dev_1.0.8-6_s390x.deb ... 198s Unpacking libbz2-dev:s390x (1.0.8-6) ... 198s Selecting previously unselected package libdeflate-dev:s390x. 198s Preparing to unpack .../30-libdeflate-dev_1.23-1_s390x.deb ... 198s Unpacking libdeflate-dev:s390x (1.23-1) ... 198s Selecting previously unselected package libicu-dev:s390x. 198s Preparing to unpack .../31-libicu-dev_76.1-1ubuntu2_s390x.deb ... 198s Unpacking libicu-dev:s390x (76.1-1ubuntu2) ... 199s Selecting previously unselected package libjpeg-turbo8-dev:s390x. 199s Preparing to unpack .../32-libjpeg-turbo8-dev_2.1.5-3ubuntu2_s390x.deb ... 199s Unpacking libjpeg-turbo8-dev:s390x (2.1.5-3ubuntu2) ... 199s Selecting previously unselected package libjpeg8-dev:s390x. 199s Preparing to unpack .../33-libjpeg8-dev_8c-2ubuntu11_s390x.deb ... 199s Unpacking libjpeg8-dev:s390x (8c-2ubuntu11) ... 199s Selecting previously unselected package libjpeg-dev:s390x. 199s Preparing to unpack .../34-libjpeg-dev_8c-2ubuntu11_s390x.deb ... 199s Unpacking libjpeg-dev:s390x (8c-2ubuntu11) ... 199s Selecting previously unselected package liblapack-dev:s390x. 199s Preparing to unpack .../35-liblapack-dev_3.12.1-2_s390x.deb ... 199s Unpacking liblapack-dev:s390x (3.12.1-2) ... 199s Selecting previously unselected package libncurses-dev:s390x. 199s Preparing to unpack .../36-libncurses-dev_6.5+20250125-2_s390x.deb ... 199s Unpacking libncurses-dev:s390x (6.5+20250125-2) ... 199s Selecting previously unselected package libpcre2-16-0:s390x. 199s Preparing to unpack .../37-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 199s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 199s Selecting previously unselected package libpcre2-32-0:s390x. 199s Preparing to unpack .../38-libpcre2-32-0_10.42-4ubuntu3_s390x.deb ... 199s Unpacking libpcre2-32-0:s390x (10.42-4ubuntu3) ... 199s Selecting previously unselected package libpcre2-posix3:s390x. 199s Preparing to unpack .../39-libpcre2-posix3_10.42-4ubuntu3_s390x.deb ... 199s Unpacking libpcre2-posix3:s390x (10.42-4ubuntu3) ... 199s Selecting previously unselected package libpcre2-dev:s390x. 199s Preparing to unpack .../40-libpcre2-dev_10.42-4ubuntu3_s390x.deb ... 199s Unpacking libpcre2-dev:s390x (10.42-4ubuntu3) ... 199s Selecting previously unselected package libpkgconf3:s390x. 199s Preparing to unpack .../41-libpkgconf3_1.8.1-4_s390x.deb ... 199s Unpacking libpkgconf3:s390x (1.8.1-4) ... 199s Selecting previously unselected package zlib1g-dev:s390x. 199s Preparing to unpack .../42-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 199s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 199s Selecting previously unselected package libpng-dev:s390x. 199s Preparing to unpack .../43-libpng-dev_1.6.46-4_s390x.deb ... 199s Unpacking libpng-dev:s390x (1.6.46-4) ... 199s Selecting previously unselected package libreadline-dev:s390x. 199s Preparing to unpack .../44-libreadline-dev_8.2-6_s390x.deb ... 199s Unpacking libreadline-dev:s390x (8.2-6) ... 199s Selecting previously unselected package liblzma-dev:s390x. 199s Preparing to unpack .../45-liblzma-dev_5.6.3-1_s390x.deb ... 199s Unpacking liblzma-dev:s390x (5.6.3-1) ... 199s Selecting previously unselected package pkgconf-bin. 199s Preparing to unpack .../46-pkgconf-bin_1.8.1-4_s390x.deb ... 199s Unpacking pkgconf-bin (1.8.1-4) ... 199s Selecting previously unselected package pkgconf:s390x. 199s Preparing to unpack .../47-pkgconf_1.8.1-4_s390x.deb ... 199s Unpacking pkgconf:s390x (1.8.1-4) ... 199s Selecting previously unselected package libtirpc-dev:s390x. 199s Preparing to unpack .../48-libtirpc-dev_1.3.4+ds-1.3_s390x.deb ... 199s Unpacking libtirpc-dev:s390x (1.3.4+ds-1.3) ... 199s Selecting previously unselected package r-base-dev. 199s Preparing to unpack .../49-r-base-dev_4.4.2-1build1_all.deb ... 199s Unpacking r-base-dev (4.4.2-1build1) ... 199s Selecting previously unselected package pkg-r-autopkgtest. 199s Preparing to unpack .../50-pkg-r-autopkgtest_20231212ubuntu1_all.deb ... 199s Unpacking pkg-r-autopkgtest (20231212ubuntu1) ... 199s Setting up libjpeg-turbo8-dev:s390x (2.1.5-3ubuntu2) ... 199s Setting up libncurses-dev:s390x (6.5+20250125-2) ... 199s Setting up libreadline-dev:s390x (8.2-6) ... 199s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 199s Setting up libpcre2-32-0:s390x (10.42-4ubuntu3) ... 199s Setting up libtirpc-dev:s390x (1.3.4+ds-1.3) ... 199s Setting up libpkgconf3:s390x (1.8.1-4) ... 199s Setting up libmpc3:s390x (1.3.1-1build2) ... 199s Setting up icu-devtools (76.1-1ubuntu2) ... 199s Setting up pkgconf-bin (1.8.1-4) ... 199s Setting up liblzma-dev:s390x (5.6.3-1) ... 199s Setting up libubsan1:s390x (14.2.0-17ubuntu1) ... 199s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 199s Setting up libpcre2-posix3:s390x (10.42-4ubuntu3) ... 199s Setting up libasan8:s390x (14.2.0-17ubuntu1) ... 199s Setting up libjpeg8-dev:s390x (8c-2ubuntu11) ... 199s Setting up libisl23:s390x (0.27-1) ... 199s Setting up libdeflate-dev:s390x (1.23-1) ... 199s Setting up libicu-dev:s390x (76.1-1ubuntu2) ... 199s Setting up libcc1-0:s390x (14.2.0-17ubuntu1) ... 199s Setting up libblas-dev:s390x (3.12.1-2) ... 199s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so to provide /usr/lib/s390x-linux-gnu/libblas.so (libblas.so-s390x-linux-gnu) in auto mode 199s Setting up dctrl-tools (2.24-3build3) ... 199s Setting up libitm1:s390x (14.2.0-17ubuntu1) ... 199s Setting up libbz2-dev:s390x (1.0.8-6) ... 199s Setting up libpcre2-dev:s390x (10.42-4ubuntu3) ... 199s Setting up libpng-dev:s390x (1.6.46-4) ... 199s Setting up libjpeg-dev:s390x (8c-2ubuntu11) ... 199s Setting up pkgconf:s390x (1.8.1-4) ... 199s Setting up liblapack-dev:s390x (3.12.1-2) ... 199s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so to provide /usr/lib/s390x-linux-gnu/liblapack.so (liblapack.so-s390x-linux-gnu) in auto mode 199s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 199s Setting up cpp-14 (14.2.0-17ubuntu1) ... 199s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 199s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 199s Setting up libgfortran-14-dev:s390x (14.2.0-17ubuntu1) ... 199s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 199s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 199s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 199s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 199s Setting up cpp (4:14.2.0-1ubuntu1) ... 199s Setting up gfortran-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 199s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 199s Setting up gcc-14 (14.2.0-17ubuntu1) ... 199s Setting up g++-14 (14.2.0-17ubuntu1) ... 199s Setting up gfortran-14 (14.2.0-17ubuntu1) ... 199s Setting up gfortran-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 199s Setting up gcc (4:14.2.0-1ubuntu1) ... 199s Setting up g++ (4:14.2.0-1ubuntu1) ... 199s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 199s Setting up build-essential (12.10ubuntu1) ... 199s Setting up gfortran (4:14.2.0-1ubuntu1) ... 199s update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f95 (f95) in auto mode 199s update-alternatives: warning: skip creation of /usr/share/man/man1/f95.1.gz because associated file /usr/share/man/man1/gfortran.1.gz (of link group f95) doesn't exist 199s update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f77 (f77) in auto mode 199s update-alternatives: warning: skip creation of /usr/share/man/man1/f77.1.gz because associated file /usr/share/man/man1/gfortran.1.gz (of link group f77) doesn't exist 199s Setting up r-base-dev (4.4.2-1build1) ... 199s Setting up pkg-r-autopkgtest (20231212ubuntu1) ... 199s Processing triggers for libc-bin (2.41-1ubuntu1) ... 199s Processing triggers for man-db (2.13.0-1) ... 200s Processing triggers for install-info (7.1.1-1) ... 200s autopkgtest: DBG: testbed command exited with code 0 200s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'r-cran-av'], kind short, sout pipe, serr pipe, env [] 200s autopkgtest: DBG: testbed command exited with code 0 200s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-packages.all"], kind short, sout raw, serr pipe, env [] 200s autopkgtest: DBG: testbed command exited with code 0 200s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-packages.all /tmp/autopkgtest-work.k41681sz/out/pkg-r-autopkgtest-packages.all 201s autopkgtest: DBG: got reply from testbed: ok 201s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.kbiIQP/build.7Su/src'], kind short, sout raw, serr raw, env [] 201s autopkgtest: DBG: testbed command exited with code 0 201s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.kbiIQP/build.7Su/src already exists 201s autopkgtest [02:13:00]: test pkg-r-autopkgtest: /usr/share/dh-r/pkg-r-autopkgtest 201s autopkgtest [02:13:00]: test pkg-r-autopkgtest: [----------------------- 201s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.kbiIQP/wrapper.sh --debug --artifacts=/tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-artifacts --chdir=/tmp/autopkgtest.kbiIQP/build.7Su/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.kbiIQP/pkg-r-autopkgtest-stderr --stdout=/tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-stdout --tmp=/tmp/autopkgtest.kbiIQP/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 /usr/share/dh-r/pkg-r-autopkgtest"], kind test, sout raw, serr raw, env [] 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-artifacts 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: changing to directory: /tmp/autopkgtest.kbiIQP/build.7Su/src 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: setting environment: LANG=C.UTF-8 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LANGUAGE 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_ADDRESS 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_ALL 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_COLLATE 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_CTYPE 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_IDENTIFICATION 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_MEASUREMENT 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_MESSAGES 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_MONETARY 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_NAME 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_NUMERIC 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_PAPER 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_TELEPHONE 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: unsetting environment: LC_TIME 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: pretending to be a login shell 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: will write standard error to /tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-stderr 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: will write stdout to /tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-stdout 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.kbiIQP/autopkgtest_tmp 201s /tmp/autopkgtest.kbiIQP/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 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: command to run: bash -ec /usr/share/dh-r/pkg-r-autopkgtest 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: copying /tmp/tmp.tbKHOoz012/out to stdout and file: /tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-stdout 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: copying /tmp/tmp.tbKHOoz012/err to standard error and file: /tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-stdout 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: writing script pid 4317 to /tmp/autopkgtest_script_pid 201s Test: Try to load the R library av 201s 201s R version 4.4.2 (2024-10-31) -- "Pile of Leaves" 201s Copyright (C) 2024 The R Foundation for Statistical Computing 201s Platform: s390x-ibm-linux-gnu 201s 201s R is free software and comes with ABSOLUTELY NO WARRANTY. 201s You are welcome to redistribute it under certain conditions. 201s Type 'license()' or 'licence()' for distribution details. 201s 201s R is a collaborative project with many contributors. 201s Type 'contributors()' for more information and 201s 'citation()' on how to cite R or R packages in publications. 201s 201s Type 'demo()' for some demos, 'help()' for on-line help, or 201s 'help.start()' for an HTML browser interface to help. 201s Type 'q()' to quit R. 201s 201s > library('av') 201s > 201s > 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: checking for leaked background processes... 201s Other tests are currently unsupported! 201s They will be progressively added. 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: waiting for tee/cat subprocesses... 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: cleaning up... 201s /tmp/autopkgtest.kbiIQP/wrapper.sh: Exit status: 0 201s autopkgtest: DBG: testbed command exited with code 0 201s autopkgtest [02:13:00]: test pkg-r-autopkgtest: -----------------------] 201s autopkgtest: DBG: testbed executing test finished with exit status 0 201s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-stdout /tmp/autopkgtest-work.k41681sz/out/pkg-r-autopkgtest-stdout 202s autopkgtest: DBG: got reply from testbed: ok 202s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-stderr /tmp/autopkgtest-work.k41681sz/out/pkg-r-autopkgtest-stderr 202s autopkgtest: DBG: got reply from testbed: ok 202s autopkgtest [02:13:01]: test pkg-r-autopkgtest: - - - - - - - - - - results - - - - - - - - - - 202s pkg-r-autopkgtest PASS 202s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-artifacts/ /tmp/autopkgtest-work.k41681sz/out/artifacts/ 202s autopkgtest: DBG: got reply from testbed: ok 202s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.kbiIQP/pkg-r-autopkgtest-artifacts', '/tmp/autopkgtest.kbiIQP/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 202s autopkgtest: DBG: testbed command exited with code 0 202s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 202s autopkgtest [02:13:01]: @@@@@@@@@@@@@@@@@@@@ summary 202s run-unit-test PASS 202s pkg-r-autopkgtest PASS 202s autopkgtest: DBG: testbed stop 202s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.kbiIQP 202s autopkgtest: DBG: sending command to testbed: close 219s autopkgtest: DBG: got reply from testbed: ok 219s autopkgtest: DBG: sending command to testbed: quit 219s nova [W] Using flock in prodstack6-s390x 219s flock: timeout while waiting to get lock 219s Creating nova instance adt-plucky-s390x-r-cran-av-20250216-020939-juju-7f2275-prod-proposed-migration-environment-15-aceb3442-b729-44b6-88fc-fadea8ff2639 from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 219s nova [W] Timed out waiting for 5e26731a-a09c-489d-a44f-213a9cafe2e4 to get deleted.